@@ -62,7 +62,7 @@ public int compare(TeamWrapper o1, TeamWrapper o2) {
6262 }
6363 },
6464
65- SORT_STORM_ROCKET_HATCH_AVERAGE ("Avg. storm Rocket hatches" ) {
65+ SORT_STORM_ROCKET_HATCH_AVERAGE ("Avg. Storm Rocket hatches" ) {
6666 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
6767 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getStormHighRocketHatchCount )
6868 + ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getStormMidRocketHatchCount )
@@ -73,14 +73,14 @@ public int compare(TeamWrapper o1, TeamWrapper o2) {
7373 }
7474 },
7575
76- SORT_STORM_CARGO_SHIP_HATCH_AVERAGE ("Avg. storm Cargo Ship hatches" ) {
76+ SORT_STORM_CARGO_SHIP_HATCH_AVERAGE ("Avg. Storm Cargo Ship hatches" ) {
7777 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
7878 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getStormCargoShipHatchCount ),
7979 ScoutDataStatistics .getAverage (o2 .getDataList (), ScoutData ::getStormCargoShipHatchCount ));
8080 }
8181 },
8282
83- SORT_STORM_ROCKET_CARGO_AVERAGE ("Avg. storm Rocket cargo" ) {
83+ SORT_STORM_ROCKET_CARGO_AVERAGE ("Avg. Storm Rocket cargo" ) {
8484 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
8585 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getStormHighRocketCargoCount )
8686 + ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getStormMidRocketCargoCount )
@@ -91,14 +91,14 @@ public int compare(TeamWrapper o1, TeamWrapper o2) {
9191 }
9292 },
9393
94- SORT_STORM_CARGO_SHIP_CARGO_AVERAGE ("Avg. storm Cargo Ship cargo" ) {
94+ SORT_STORM_CARGO_SHIP_CARGO_AVERAGE ("Avg. Storm Cargo Ship cargo" ) {
9595 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
9696 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getStormCargoShipCargoCount ),
9797 ScoutDataStatistics .getAverage (o2 .getDataList (), ScoutData ::getStormCargoShipCargoCount ));
9898 }
9999 },
100100
101- SORT_TELEOP_ROCKET_HATCH_AVERAGE ("Avg. teleop Rocket hatches" ) {
101+ SORT_TELEOP_ROCKET_HATCH_AVERAGE ("Avg. Teleop Rocket hatches" ) {
102102 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
103103 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getTeleopHighRocketHatchCount )
104104 + ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getTeleopMidRocketHatchCount )
@@ -109,14 +109,14 @@ public int compare(TeamWrapper o1, TeamWrapper o2) {
109109 }
110110 },
111111
112- SORT_TELEOP_CARGO_SHIP_HATCH_AVERAGE ("Avg. teleop Cargo Ship hatches" ) {
112+ SORT_TELEOP_CARGO_SHIP_HATCH_AVERAGE ("Avg. Teleop Cargo Ship hatches" ) {
113113 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
114114 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getTeleopCargoShipHatchCount ),
115115 ScoutDataStatistics .getAverage (o2 .getDataList (), ScoutData ::getTeleopCargoShipHatchCount ));
116116 }
117117 },
118118
119- SORT_TELEOP_ROCKET_CARGO_AVERAGE ("Avg. teleop Rocket cargo" ) {
119+ SORT_TELEOP_ROCKET_CARGO_AVERAGE ("Avg. Teleop Rocket cargo" ) {
120120 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
121121 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getTeleopHighRocketCargoCount )
122122 + ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getTeleopMidRocketCargoCount )
@@ -127,7 +127,7 @@ public int compare(TeamWrapper o1, TeamWrapper o2) {
127127 }
128128 },
129129
130- SORT_TELEOP_CARGO_SHIP_CARGO_AVERAGE ("Avg. teleop Cargo Ship cargo" ) {
130+ SORT_TELEOP_CARGO_SHIP_CARGO_AVERAGE ("Avg. Teleop Cargo Ship cargo" ) {
131131 public int compare (TeamWrapper o1 , TeamWrapper o2 ) {
132132 return Double .compare (ScoutDataStatistics .getAverage (o1 .getDataList (), ScoutData ::getTeleopCargoShipCargoCount ),
133133 ScoutDataStatistics .getAverage (o2 .getDataList (), ScoutData ::getTeleopCargoShipCargoCount ));
0 commit comments