From 7b09706e09b426e1ef694f1f34858f7fa1e55b1d Mon Sep 17 00:00:00 2001 From: Nicolas Antoniazzi Date: Thu, 13 Jul 2017 17:11:55 +0200 Subject: [PATCH] Remove comment messages --- handson/src/main/scala/example/Area.scala | 3 --- handson/src/main/scala/example/CurryingObject.scala | 3 --- handson/src/main/scala/example/FutureType.scala | 3 --- handson/src/main/scala/example/Hello.scala | 3 --- handson/src/main/scala/example/HofSort.scala | 3 --- handson/src/main/scala/example/Lamdba.scala | 3 --- handson/src/main/scala/example/OptionType.scala | 3 --- handson/src/main/scala/example/PureFunctionExercise.scala | 3 --- handson/src/main/scala/example/Recursion.scala | 3 --- handson/src/test/scala/example/FutureTest.scala | 3 --- handson/src/test/scala/example/FutureTest2.scala | 3 --- handson/src/test/scala/example/HelloTest.scala | 3 --- handson/src/test/scala/example/TestComputeArea.scala | 3 --- handson/src/test/scala/example/TestCurrying.scala | 3 --- handson/src/test/scala/example/TestHof.scala | 3 --- handson/src/test/scala/example/TestHofSort.scala | 3 --- handson/src/test/scala/example/TestLambda.scala | 3 --- handson/src/test/scala/example/TestMultiplyByTwo.scala | 3 --- handson/src/test/scala/example/TestOption.scala | 3 --- handson/src/test/scala/example/TestOptionPartTwo.scala | 3 --- handson/src/test/scala/example/TestPureFunctionNew.scala | 3 --- handson/src/test/scala/example/TestRecursion.scala | 3 --- handson/src/test/scala/example/TestTailRecursion.scala | 3 --- 23 files changed, 69 deletions(-) diff --git a/handson/src/main/scala/example/Area.scala b/handson/src/main/scala/example/Area.scala index 23d649b..43134ea 100644 --- a/handson/src/main/scala/example/Area.scala +++ b/handson/src/main/scala/example/Area.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 15/06/17. - */ object Area { diff --git a/handson/src/main/scala/example/CurryingObject.scala b/handson/src/main/scala/example/CurryingObject.scala index cbdfb8a..b24601a 100644 --- a/handson/src/main/scala/example/CurryingObject.scala +++ b/handson/src/main/scala/example/CurryingObject.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 13/05/17. - */ object CurryingObject { diff --git a/handson/src/main/scala/example/FutureType.scala b/handson/src/main/scala/example/FutureType.scala index 8ed7620..8879a79 100644 --- a/handson/src/main/scala/example/FutureType.scala +++ b/handson/src/main/scala/example/FutureType.scala @@ -5,9 +5,6 @@ import scala.concurrent.Future import scala.concurrent.duration._ import scala.util.{ Failure, Success } -/** - * Created by charlotte on 14/05/17. - */ object FutureType { val maxTime = Duration(10, SECONDS) diff --git a/handson/src/main/scala/example/Hello.scala b/handson/src/main/scala/example/Hello.scala index 074f16e..ee88296 100644 --- a/handson/src/main/scala/example/Hello.scala +++ b/handson/src/main/scala/example/Hello.scala @@ -1,6 +1,3 @@ -/** - * Created by charlotte on 01/05/17. - */ package example object Hello extends Greeting with App { diff --git a/handson/src/main/scala/example/HofSort.scala b/handson/src/main/scala/example/HofSort.scala index f470e48..e19dd4b 100644 --- a/handson/src/main/scala/example/HofSort.scala +++ b/handson/src/main/scala/example/HofSort.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 13/05/17. - */ object HofSort { def sort(cmp: (String, String)=>Boolean, list: List[String]):List[String] ={ diff --git a/handson/src/main/scala/example/Lamdba.scala b/handson/src/main/scala/example/Lamdba.scala index 9f7277a..370f01d 100644 --- a/handson/src/main/scala/example/Lamdba.scala +++ b/handson/src/main/scala/example/Lamdba.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 13/05/17. - */ object Lamdba { /** diff --git a/handson/src/main/scala/example/OptionType.scala b/handson/src/main/scala/example/OptionType.scala index 2f9193b..c2d9943 100644 --- a/handson/src/main/scala/example/OptionType.scala +++ b/handson/src/main/scala/example/OptionType.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 14/05/17. - */ object OptionType { diff --git a/handson/src/main/scala/example/PureFunctionExercise.scala b/handson/src/main/scala/example/PureFunctionExercise.scala index 537eed2..e1f9a13 100644 --- a/handson/src/main/scala/example/PureFunctionExercise.scala +++ b/handson/src/main/scala/example/PureFunctionExercise.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 30/05/17. - */ object PureFunctionExercise { // val is an immutable type of data. diff --git a/handson/src/main/scala/example/Recursion.scala b/handson/src/main/scala/example/Recursion.scala index ec96b84..acc3529 100644 --- a/handson/src/main/scala/example/Recursion.scala +++ b/handson/src/main/scala/example/Recursion.scala @@ -2,9 +2,6 @@ package example import scala.annotation.tailrec -/** - * Created by charlotte on 06/05/17. - */ object Recursion { /** diff --git a/handson/src/test/scala/example/FutureTest.scala b/handson/src/test/scala/example/FutureTest.scala index 2019e61..3cf2f6b 100644 --- a/handson/src/test/scala/example/FutureTest.scala +++ b/handson/src/test/scala/example/FutureTest.scala @@ -4,9 +4,6 @@ import org.scalatest._ import scala.util.{ Failure, Success } import scala.concurrent.ExecutionContext.Implicits.global -/** - * Created by charlotte on 14/05/17. - */ class FutureTest extends FlatSpec with Matchers { it should "do nothing" in { diff --git a/handson/src/test/scala/example/FutureTest2.scala b/handson/src/test/scala/example/FutureTest2.scala index df8f5a4..309a17f 100644 --- a/handson/src/test/scala/example/FutureTest2.scala +++ b/handson/src/test/scala/example/FutureTest2.scala @@ -6,9 +6,6 @@ import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.Await import scala.concurrent.duration._ -/** - * Created by charlotte on 14/05/17. - */ class FutureTest2 extends FlatSpec with Matchers { it should "determine if we can do a pie" in { diff --git a/handson/src/test/scala/example/HelloTest.scala b/handson/src/test/scala/example/HelloTest.scala index a6b23aa..6307bb8 100644 --- a/handson/src/test/scala/example/HelloTest.scala +++ b/handson/src/test/scala/example/HelloTest.scala @@ -1,8 +1,5 @@ package example -/** - * Created by charlotte on 01/05/17. - */ import org.scalatest._ class HelloTest extends FlatSpec with Matchers { diff --git a/handson/src/test/scala/example/TestComputeArea.scala b/handson/src/test/scala/example/TestComputeArea.scala index 5c64f49..09f6534 100644 --- a/handson/src/test/scala/example/TestComputeArea.scala +++ b/handson/src/test/scala/example/TestComputeArea.scala @@ -1,6 +1,3 @@ -/** - * Created by charlotte on 05/05/17. - */ package example import org.scalatest._ diff --git a/handson/src/test/scala/example/TestCurrying.scala b/handson/src/test/scala/example/TestCurrying.scala index d93bf85..a200069 100644 --- a/handson/src/test/scala/example/TestCurrying.scala +++ b/handson/src/test/scala/example/TestCurrying.scala @@ -1,6 +1,3 @@ -/** - * Created by charlotte on 05/05/17. - */ package example import org.scalatest._ diff --git a/handson/src/test/scala/example/TestHof.scala b/handson/src/test/scala/example/TestHof.scala index 6f36fb3..6f3dafa 100644 --- a/handson/src/test/scala/example/TestHof.scala +++ b/handson/src/test/scala/example/TestHof.scala @@ -1,6 +1,3 @@ -/** - * Created by charlotte on 05/05/17. - */ package example import org.scalatest._ diff --git a/handson/src/test/scala/example/TestHofSort.scala b/handson/src/test/scala/example/TestHofSort.scala index 7f325e9..94cdb45 100644 --- a/handson/src/test/scala/example/TestHofSort.scala +++ b/handson/src/test/scala/example/TestHofSort.scala @@ -1,6 +1,3 @@ -/** - * Created by charlotte on 05/05/17. - */ package example import org.scalatest._ diff --git a/handson/src/test/scala/example/TestLambda.scala b/handson/src/test/scala/example/TestLambda.scala index 94e517f..1fe110b 100644 --- a/handson/src/test/scala/example/TestLambda.scala +++ b/handson/src/test/scala/example/TestLambda.scala @@ -2,9 +2,6 @@ package example import org.scalatest._ -/** - * Created by charlotte on 09/05/17. - */ class TestLambda extends FlatSpec with Matchers{ it should "be sum of x first number" in { assert(Lamdba.sum(1)== 1) diff --git a/handson/src/test/scala/example/TestMultiplyByTwo.scala b/handson/src/test/scala/example/TestMultiplyByTwo.scala index 7ad3377..b29a06d 100644 --- a/handson/src/test/scala/example/TestMultiplyByTwo.scala +++ b/handson/src/test/scala/example/TestMultiplyByTwo.scala @@ -1,6 +1,3 @@ -/** - * Created by charlotte on 05/05/17. - */ package example import org.scalatest._ diff --git a/handson/src/test/scala/example/TestOption.scala b/handson/src/test/scala/example/TestOption.scala index 94b8507..3372dda 100644 --- a/handson/src/test/scala/example/TestOption.scala +++ b/handson/src/test/scala/example/TestOption.scala @@ -2,9 +2,6 @@ package example import org.scalatest._ -/** - * Created by charlotte on 14/05/17. - */ class TestOption extends FlatSpec with Matchers{ it should "return a none option if divide by zero" in{ diff --git a/handson/src/test/scala/example/TestOptionPartTwo.scala b/handson/src/test/scala/example/TestOptionPartTwo.scala index 52e841d..1650246 100644 --- a/handson/src/test/scala/example/TestOptionPartTwo.scala +++ b/handson/src/test/scala/example/TestOptionPartTwo.scala @@ -2,9 +2,6 @@ package example import org.scalatest.{FlatSpec, Matchers} -/** - * Created by charlotte on 14/05/17. - */ class TestOptionPartTwo extends FlatSpec with Matchers{ it should "return 0 if divide by zero" in{ diff --git a/handson/src/test/scala/example/TestPureFunctionNew.scala b/handson/src/test/scala/example/TestPureFunctionNew.scala index 8f12435..09962cc 100644 --- a/handson/src/test/scala/example/TestPureFunctionNew.scala +++ b/handson/src/test/scala/example/TestPureFunctionNew.scala @@ -2,9 +2,6 @@ package example import org.scalatest.{FlatSpec, Matchers} -/** - * Created by charlotte on 09/05/17. - */ class TestPureFunctionNew extends FlatSpec with Matchers{ it should "build a complete url" in { diff --git a/handson/src/test/scala/example/TestRecursion.scala b/handson/src/test/scala/example/TestRecursion.scala index 43ffeaf..4631824 100644 --- a/handson/src/test/scala/example/TestRecursion.scala +++ b/handson/src/test/scala/example/TestRecursion.scala @@ -2,9 +2,6 @@ package example import org.scalatest.{FlatSpec, Matchers} -/** - * Created by charlotte on 09/05/17. - */ class TestRecursion extends FlatSpec with Matchers{ it should "be the fibonnacci list" in { System.out.println(Recursion.fibonacci(List[Int](), 25)) diff --git a/handson/src/test/scala/example/TestTailRecursion.scala b/handson/src/test/scala/example/TestTailRecursion.scala index bad17d7..c3e970d 100644 --- a/handson/src/test/scala/example/TestTailRecursion.scala +++ b/handson/src/test/scala/example/TestTailRecursion.scala @@ -2,9 +2,6 @@ package example import org.scalatest.{FlatSpec, Matchers} -/** - * Created by charlotte on 09/05/17. - */ class TestTailRecursion extends FlatSpec with Matchers{ it should "be the fibonnacci list" in { System.out.println(Recursion.tailFibonacci(25) )