We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d79443 commit 99ad9e0Copy full SHA for 99ad9e0
1 file changed
src/main/java/bwem/CPPath.java
@@ -25,7 +25,7 @@
25
public class CPPath implements Iterable<ChokePoint> {
26
private final List<ChokePoint> chokepoints;
27
28
- public CPPath() {
+ CPPath() {
29
this.chokepoints = new ArrayList<>();
30
}
31
@@ -37,15 +37,15 @@ public ChokePoint get(final int index) {
37
return this.chokepoints.get(index);
38
39
40
- public void add(final ChokePoint chokepoint) {
+ void add(final ChokePoint chokepoint) {
41
this.chokepoints.add(chokepoint);
42
43
44
- public void add(final int index, final ChokePoint chokepoint) {
+ void add(final int index, final ChokePoint chokepoint) {
45
this.chokepoints.add(index, chokepoint);
46
47
48
- public void clear() {
+ void clear() {
49
this.chokepoints.clear();
50
51
0 commit comments