diff --git a/docs/developers/symbol-information.html b/docs/developers/symbol-information.html index 7447bb759..61a3979f8 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#lastIndexOf(+4). => private[lang] static method lastIndexOf(param0: Array[Byte], param1: Byte, param2: Int, param3: String, param4: Int): Int,
-// java/lang/String#checkIndex(). => private[lang] static method checkIndex(param0: Int, param1: Int): Unit,
-// java/lang/String#valueOf(+5). => static method valueOf(param0: Int): String
+// java/lang/String#join(). => static method join(param0: CharSequence, param1: CharSequence*): String,
+// java/lang/String#valueOfCodePoint(). => private[lang] static method valueOfCodePoint(param0: Int): String,
+// java/lang/Object#registerNatives(). => private static method registerNatives(): Unit
// )
getClassMethods(Symbol("java/lang/String#")).filter(!_.isStatic).take(3)
// res33: Set[SymbolInformation] = HashSet(
-// java/lang/String#isLatin1(). => private method isLatin1(): Boolean,
-// java/lang/Object#wait(). => final method wait(): Unit,
-// java/lang/String#compareToIgnoreCase(). => method compareToIgnoreCase(param0: String): Int
+// java/lang/CharSequence#charAt(). => abstract method charAt(param0: Int): Char,
+// java/lang/String#compareTo(). => method compareTo(param0: String): Int,
+// java/lang/String#split(). => method split(param0: String, param1: Int): Array[String]
// )
Overloaded methods can be inherited from supertypes.
diff --git a/docs/users/installation.html b/docs/users/installation.html index 2ee245906..c3dfe68bc 100644 --- a/docs/users/installation.html +++ b/docs/users/installation.html @@ -380,7 +380,7 @@Scalafix 0.13.0+101-22443e1f-SNAPSHOT
+Scalafix 0.13.0+103-6eeb97bf-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+101-22443e1f-SNAPSHOT"
++dependencyOverrides += "ch.epfl.scala" % "scalafix-interfaces" % "0.13.0+103-6eeb97bf-SNAPSHOT"
If using the command-line interface
-cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+101-22443e1f-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help
+cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+103-6eeb97bf-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help