QuackatronHQ / Gigarepo

Invalid deprecated annotation used SC-W1035
Bug risk
Critical
1 occurrence in this check
Found invalid annotation @Deprecated(), use @deprecated() instead
29
30  def readFile(path: String): String = Source.fromFile(path).mkString
31
32  @Deprecated()33  def cmpArray1(arr1: Array[Int], arr2: Array[Int]): Boolean = arr1 == arr2
34  def stringifyArray(arr: Array[Int]): String                = arr.toString
35}