summaryrefslogtreecommitdiff
path: root/scalalib/test/resources/hello-world/src/Result.scala
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-03 19:16:23 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-03 19:16:23 -0800
commitec39948ed1333699daf246e2ba37ccec67db5bd2 (patch)
treea9d46242337543bcf589c33a596e7edf91b64664 /scalalib/test/resources/hello-world/src/Result.scala
parent6fa39162250c2477b3c9d322c453dfd51646245b (diff)
downloadmill-ec39948ed1333699daf246e2ba37ccec67db5bd2.tar.gz
mill-ec39948ed1333699daf246e2ba37ccec67db5bd2.tar.bz2
mill-ec39948ed1333699daf246e2ba37ccec67db5bd2.zip
Make use of `CrossScalaModule` in `HelloWorldTests`
Also standardize the `HelloWorldTests` onto the typical project layout, where the module of interest is nested within a top-level `BaseModule`
Diffstat (limited to 'scalalib/test/resources/hello-world/src/Result.scala')
-rw-r--r--scalalib/test/resources/hello-world/src/Result.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/scalalib/test/resources/hello-world/src/Result.scala b/scalalib/test/resources/hello-world/src/Result.scala
deleted file mode 100644
index d7d29a51..00000000
--- a/scalalib/test/resources/hello-world/src/Result.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-object Person {
- def fromString(s: String): Person = {
- val Array(name, age) = s.split(":")
- Person(name, age.toInt)
- }
-}
-case class Person(name: String, age: Int)