We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec6af9 commit 63fee67Copy full SHA for 63fee67
shared/src/main/scala/scala/util/parsing/json/JSON.scala
@@ -28,6 +28,7 @@ package util.parsing.json
28
*
29
* @author Derek Chen-Becker <"java"+@+"chen-becker"+"."+"org">
30
*/
31
+@deprecated("Use The Scala Library Index to find alternatives: https://index.scala-lang.org/", "1.0.6")
32
object JSON extends Parser {
33
34
/**
shared/src/main/scala/scala/util/parsing/json/package.scala
@@ -0,0 +1,8 @@
1
+package scala.util.parsing
2
+
3
+/**
4
+ * This package was never intended for production use; it's really more of a code sample demonstrating how to use parser combinators.
5
+ *
6
+ * Use [[https://index.scala-lang.org/ The Scala Library Index]] to find alternative JSON parsing libraries.
7
+ */
8
+package object json {}
0 commit comments