Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2e8356f

Browse files
committedMay 22, 2025
chore: disable cc files present in library-internal
1 parent 2a7e8c2 commit 2e8356f

File tree

5 files changed

+2
-92
lines changed

5 files changed

+2
-92
lines changed
 

‎library-internal/src/scala/Function1.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ object Function1 {
4444
}
4545

4646
/** A function of 1 parameter.
47-
*
47+
*
4848
* In the following example, the definition of `succ` is
4949
* shorthand, conceptually, for the anonymous class definition
5050
* `anonfun1`, although the implementation details of how the
@@ -64,7 +64,7 @@ object Function1 {
6464
* is that the latter can specify inputs which it will not handle.
6565
*/
6666
@annotation.implicitNotFound(msg = "No implicit view available from ${T1} => ${R}.")
67-
trait Function1[@specialized(Specializable.Arg) -T1, @specialized(Specializable.Return) +R] extends AnyRef { self =>
67+
trait Function1[@specialized(Specializable.Arg) -T1, @specialized(Specializable.Return) +R] extends AnyRef { // TODO: Fix me self =>
6868
/** Apply the body of this function to the argument.
6969
* @return the result of function application.
7070
*/

‎scala2-library-cc/src/scala/Function1.scala

Lines changed: 0 additions & 90 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.