summaryrefslogtreecommitdiff
path: root/scalalib/test/resources/hello-world/src/Result.scala
diff options
context:
space:
mode:
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)