Skip to content

Commit caf64ec

Browse files
committed
WIP: test
1 parent 980e766 commit caf64ec

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/test/java/com/flowingcode/vaadin/jsonmigration/BaseClientCallable.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44

55
public abstract class BaseClientCallable extends Div {
66

7-
protected final void trace() {
8-
// no-op
9-
}
7+
private boolean traced;
8+
9+
protected final void trace() {
10+
traced = true;
11+
}
12+
13+
public boolean hasBeenTraced() {
14+
return traced;
15+
}
1016

11-
public boolean hasBeenTraced() {
12-
return true;
13-
}
1417
}

0 commit comments

Comments
 (0)