summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2011-04-29 19:41:12 +0000
committermichelou <michelou@epfl.ch>2011-04-29 19:41:12 +0000
commit80bb9cfb7b2c05a48eb43852b252c36136697835 (patch)
tree0f1db7dd77ed01a536a370035c5a3f6dd5936f3b /docs
parentf335e447254c391726d52c0a380b61183571b25b (diff)
downloadscala-80bb9cfb7b2c05a48eb43852b252c36136697835.tar.gz
scala-80bb9cfb7b2c05a48eb43852b252c36136697835.tar.bz2
scala-80bb9cfb7b2c05a48eb43852b252c36136697835.zip
removed legacy library code (package scala.mobile)
Diffstat (limited to 'docs')
-rw-r--r--docs/examples/mobile/sort.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/examples/mobile/sort.scala b/docs/examples/mobile/sort.scala
deleted file mode 100644
index b0bfe43a54..0000000000
--- a/docs/examples/mobile/sort.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-package examples.mobile
-
-import java.net._
-import scala.mobile._
-
-
-object sort extends Application {
- val url = new URL("http://scala.epfl.ch/classes/examples.jar")
-
- val location = new Location(url)
- val obj = location create "examples.sort"
- val ar = Array(6, 2, 8, 5, 1)
- obj[Array[Int], Unit]("println")(ar)
- obj[Array[Int], Unit]("sort")(ar)
- obj[Array[Int], Unit]("println")(ar)
- Console.println
-}