Skip to content

Commit

Permalink
#43 - Added default service iterations 8 and 9.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Jan 26, 2017
1 parent 747f1f6 commit c7f0ada
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
@Value
public class Iteration {

public static final Iteration SR7 = new Iteration("SR7", null);
public static final Iteration SR9 = new Iteration("SR9", null);
public static final Iteration SR8 = new Iteration("SR8", SR9);
public static final Iteration SR7 = new Iteration("SR7", SR8);
public static final Iteration SR6 = new Iteration("SR6", SR7);
public static final Iteration SR5 = new Iteration("SR5", SR6);
public static final Iteration SR4 = new Iteration("SR4", SR5);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public String toString() {
@ToString
public static class Iterations implements Iterable<Iteration> {

public static Iterations DEFAULT = new Iterations(M1, RC1, GA, SR1, SR2, SR3, SR4, SR5, SR6, SR7);
public static Iterations DEFAULT = new Iterations(M1, RC1, GA, SR1, SR2, SR3, SR4, SR5, SR6, SR7, SR8, SR9);

private final List<Iteration> iterations;

Expand Down

0 comments on commit c7f0ada

Please sign in to comment.