diff --git a/docs/developers/symbol-information.html b/docs/developers/symbol-information.html index 8c7620168..ac0bf713c 100644 --- a/docs/developers/symbol-information.html +++ b/docs/developers/symbol-information.html @@ -334,42 +334,42 @@
For Java methods, use SymbolInformation.isStatic
to separate static methods
from non-static methods.
getClassMethods(Symbol("java/lang/String#")).filter(_.isStatic).take(3)
// res32: Set[SymbolInformation] = HashSet(
-// java/lang/String#copyValueOf(). => static method copyValueOf(param0: Array[Char], param1: Int, param2: Int): String,
-// java/lang/String#valueOf(+3). => static method valueOf(param0: Boolean): String,
-// java/lang/String#join(). => static method join(param0: CharSequence, param1: CharSequence*): String
+// java/lang/Object#registerNatives(). => private static method registerNatives(): Unit,
+// java/lang/String#valueOfCodePoint(). => private[lang] static method valueOfCodePoint(param0: Int): String,
+// java/lang/String#copyValueOf(). => static method copyValueOf(param0: Array[Char], param1: Int, param2: Int): String
// )
getClassMethods(Symbol("java/lang/String#")).filter(!_.isStatic).take(3)
// res33: Set[SymbolInformation] = HashSet(
-// java/lang/Object#hashCode(). => method hashCode(): Int,
-// java/lang/Object#wait(+2). => final method wait(param0: Long, param1: Int): Unit,
-// java/lang/Object#toString(). => method toString(): String
+// java/lang/Object#notifyAll(). => final method notifyAll(): Unit,
+// java/lang/String#hashCode(). => method hashCode(): Int,
+// java/lang/String#toUpperCase(+1). => method toUpperCase(): String
// )
Overloaded methods can be inherited from supertypes.
diff --git a/docs/users/installation.html b/docs/users/installation.html index 04e9283e0..d00bb59a8 100644 --- a/docs/users/installation.html +++ b/docs/users/installation.html @@ -380,7 +380,7 @@Scalafix 0.13.0+63-616b49cb-SNAPSHOT
+Scalafix 0.13.0+65-348a97b1-SNAPSHOT
Usage: scalafix [options] [<path> ...]
Scalafix is a refactoring and linting tool. Scalafix
@@ -552,10 +552,10 @@ // project/plugins.sbt
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
+resolvers += Resolver.sonatypeRepo("snapshots")
-+dependencyOverrides += "ch.epfl.scala" % "scalafix-interfaces" % "0.13.0+63-616b49cb-SNAPSHOT"
++dependencyOverrides += "ch.epfl.scala" % "scalafix-interfaces" % "0.13.0+65-348a97b1-SNAPSHOT"
If using the command-line interface
-cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+63-616b49cb-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help
+cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+65-348a97b1-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help