File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2525public class CPPath implements Iterable <ChokePoint > {
2626 private final List <ChokePoint > chokepoints ;
2727
28- public CPPath () {
28+ CPPath () {
2929 this .chokepoints = new ArrayList <>();
3030 }
3131
@@ -37,15 +37,15 @@ public ChokePoint get(final int index) {
3737 return this .chokepoints .get (index );
3838 }
3939
40- public void add (final ChokePoint chokepoint ) {
40+ void add (final ChokePoint chokepoint ) {
4141 this .chokepoints .add (chokepoint );
4242 }
4343
44- public void add (final int index , final ChokePoint chokepoint ) {
44+ void add (final int index , final ChokePoint chokepoint ) {
4545 this .chokepoints .add (index , chokepoint );
4646 }
4747
48- public void clear () {
48+ void clear () {
4949 this .chokepoints .clear ();
5050 }
5151
You can’t perform that action at this time.
0 commit comments