Skip to content

Commit 99ad9e0

Browse files
author
bytekeeper
committed
Reduce visibility.
1 parent 1d79443 commit 99ad9e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/bwem/CPPath.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
public 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

0 commit comments

Comments
 (0)