diff --git a/docs/developers/symbol-information.html b/docs/developers/symbol-information.html index 16387a017..5953c75bd 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#rangeCheck(). => private static method rangeCheck(param0: Array[Char], param1: Int, param2: Int): Void,
-// java/lang/String#checkIndex(). => private[lang] static method checkIndex(param0: Int, param1: Int): Unit,
-// java/lang/String#valueOf(+1). => static method valueOf(param0: Array[Char]): String
+// java/lang/Object#registerNatives(). => private static method registerNatives(): Unit,
+// java/lang/String#indexOf(+4). => private[lang] static method indexOf(param0: Array[Byte], param1: Byte, param2: Int, param3: String, param4: Int): Int,
+// java/lang/CharSequence#compare(). => static method compare(param0: CharSequence, param1: CharSequence): Int
// )
getClassMethods(Symbol("java/lang/String#")).filter(!_.isStatic).take(3)
// res33: Set[SymbolInformation] = HashSet(
-// java/lang/Object#clone(). => protected method clone(): Object,
+// java/lang/String#value(). => private[lang] method value(): Array[Byte],
// java/lang/Object#wait(). => final method wait(): Unit,
-// java/lang/String#substring(). => method substring(param0: Int): String
+// java/lang/Object#hashCode(). => method hashCode(): Int
// )
Overloaded methods can be inherited from supertypes.
diff --git a/docs/users/installation.html b/docs/users/installation.html index 60770c9ba..7416d03be 100644 --- a/docs/users/installation.html +++ b/docs/users/installation.html @@ -380,7 +380,7 @@Scalafix 0.13.0+80-de3dcaf2-SNAPSHOT
+Scalafix 0.13.0+82-ced414b4-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+80-de3dcaf2-SNAPSHOT"
++dependencyOverrides += "ch.epfl.scala" % "scalafix-interfaces" % "0.13.0+82-ced414b4-SNAPSHOT"
If using the command-line interface
-cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+80-de3dcaf2-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help
+cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+82-ced414b4-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help