Skip to content

Commit

Permalink
Reformatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
thetabotmaintainer[bot] authored and leventeBajczi committed Nov 10, 2023
1 parent 9c3b694 commit 35cbbdd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.junit.Test;

public class ArgStructuralEqualityTest {

private static ARG<State, Action> createArg(boolean variant) {
ARG<State, Action> arg = ARG.create(new PartialOrdStub());
Action act = new ActionStub("A");
Expand All @@ -38,7 +38,7 @@ private static ARG<State, Action> createArg(boolean variant) {
false);
ArgNode<State, Action> s11 = arg.createSuccNode(s0, act, new StateStub("s11"),
true);
if(variant) {
if (variant) {
ArgNode<State, Action> s12a = arg.createSuccNode(s0, act, new StateStub("s12a"),
false);
} else {
Expand Down

0 comments on commit 35cbbdd

Please sign in to comment.