File tree 13 files changed +127
-1
lines changed
scala-2.13/scala/util/control/compat
scala-jvm/test/scala/collection
13 files changed +127
-1
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,7 @@ lazy val `scalafix-input` = project
212
212
.settings(
213
213
scalaVersion := scalafixScala212,
214
214
publish / skip := true ,
215
+ excludeFilter := HiddenFileFilter || " *.scala" , // exclude from headerCheck
215
216
addCompilerPlugin(scalafixSemanticdb),
216
217
scalacOptions ++= Seq (
217
218
" -Yrangepos" ,
@@ -225,7 +226,10 @@ val `scalafix-output` = MultiScalaProject(
225
226
" scalafix/output" ,
226
227
_.settings(sharedScalafixSettings)
227
228
.settings(commonSettings)
228
- .settings(publish / skip := true )
229
+ .settings(
230
+ publish / skip := true ,
231
+ excludeFilter := HiddenFileFilter || " *.scala" , // exclude from headerCheck
232
+ )
229
233
.disablePlugins(ScalafixPlugin )
230
234
)
231
235
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package scala .jdk
2
14
3
15
import scala .collection .convert .{DecorateAsJava , DecorateAsScala }
Original file line number Diff line number Diff line change 9
9
* See the NOTICE file distributed with this work for
10
10
* additional information regarding copyright ownership.
11
11
*/
12
+
12
13
package scala .util .control .compat
13
14
14
15
/** A parent class for throwable objects intended for flow control.
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package scala .util .control
2
14
3
15
package object compat {
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package test .scala .collection
2
14
3
15
import org .junit .Assert ._
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package scala .jdk
2
14
3
15
import java .{lang => jl , util => ju }
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package scala .util
2
14
3
15
import org .junit .Assert ._
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package scala .util
2
14
3
15
import org .junit .Test
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package scala .util .control .compat
2
14
3
15
import org .junit .Test
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package test .scala .collection
2
14
3
15
import org .junit .Test
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package test .scala .collection
2
14
3
15
import org .junit .Test
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Scala (https://www.scala-lang.org)
3
+ *
4
+ * Copyright EPFL and Lightbend, Inc.
5
+ *
6
+ * Licensed under Apache License 2.0
7
+ * (http://www.apache.org/licenses/LICENSE-2.0).
8
+ *
9
+ * See the NOTICE file distributed with this work for
10
+ * additional information regarding copyright ownership.
11
+ */
12
+
1
13
package test .scala .collection
2
14
3
15
import org .junit .Assert .assertEquals
Original file line number Diff line number Diff line change 9
9
* See the NOTICE file distributed with this work for
10
10
* additional information regarding copyright ownership.
11
11
*/
12
+
12
13
package test .scala .collection
13
14
14
15
import org .junit .Test
You can’t perform that action at this time.
0 commit comments