diff --git a/docs/developers/symbol-information.html b/docs/developers/symbol-information.html index a61507aad..4bd163dc3 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#valueOf(+3). => static method valueOf(param0: Boolean): String,
-// java/lang/String#copyValueOf(+1). => static method copyValueOf(param0: Array[Char]): String,
-// java/lang/String#valueOf(+4). => static method valueOf(param0: Char): String
+// java/lang/String#valueOf(+6). => static method valueOf(param0: Long): String,
+// java/lang/Object#registerNatives(). => private static method registerNatives(): Unit,
+// java/lang/String#valueOf(+5). => static method valueOf(param0: Int): String
// )
getClassMethods(Symbol("java/lang/String#")).filter(!_.isStatic).take(3)
// res33: Set[SymbolInformation] = HashSet(
-// java/lang/String#offsetByCodePoints(). => method offsetByCodePoints(param0: Int, param1: Int): Int,
-// java/lang/String#split(+1). => method split(param0: String): Array[String],
-// java/lang/Object#equals(). => method equals(param0: Object): Boolean
+// java/lang/String#getBytes(). => method getBytes(param0: Int, param1: Int, param2: Array[Byte], param3: Int): Unit,
+// java/lang/String#lastIndexOf(+3). => method lastIndexOf(param0: String, param1: Int): Int,
+// java/lang/Object#wait(+2). => final method wait(param0: Long, param1: Int): Unit
// )
Overloaded methods can be inherited from supertypes.
diff --git a/docs/users/installation.html b/docs/users/installation.html index d11f69c64..50536bb59 100644 --- a/docs/users/installation.html +++ b/docs/users/installation.html @@ -368,7 +368,7 @@Scalafix 0.13.0
+Scalafix 0.13.0+2-f2818e57-SNAPSHOT
Usage: scalafix [options] [<path> ...]
Scalafix is a refactoring and linting tool. Scalafix
@@ -540,10 +540,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"
++dependencyOverrides += "ch.epfl.scala" % "scalafix-interfaces" % "0.13.0+2-f2818e57-SNAPSHOT"
If using the command-line interface
-cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0 -r sonatype:snapshots --main scalafix.cli.Cli -- --help
+cs launch ch.epfl.scala:scalafix-cli_2.13.15:0.13.0+2-f2818e57-SNAPSHOT -r sonatype:snapshots --main scalafix.cli.Cli -- --help