Skip to content

Commit 8b1130e

Browse files
committed
without this fix, this spec will fail: akka-actor-typed-tests/testOnly akka.actor.typed.TransformMessagesJavaBehaviorSpec
1 parent baf7587 commit 8b1130e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

akka-actor/src/main/java/akka/japi/pf/AbstractPFBuilder.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
* @param <F> the input type, that this PartialFunction will be applied to
1313
* @param <T> the return type, that the results of the application will have
1414
*/
15-
abstract class AbstractPFBuilder<F, T> {
15+
// todo remove `public` when this issue is fix:
16+
// https://github.com/lampepfl/dotty/issues/8661
17+
public abstract class AbstractPFBuilder<F, T> {
1618

1719
protected PartialFunction<F, T> statements = null;
1820

0 commit comments

Comments
 (0)