Skip to content

Commit 5fe965d

Browse files
committed
Checkstyle fixes because I forgot.
1 parent 6bf7f32 commit 5fe965d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

ui/src/main/java/edu/wpi/grip/ui/pipeline/StepController.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ private void deleteStep() {
144144

145145
@FXML
146146
private void moveStepLeft() {
147-
for(InputSocketController input: inputSockets){
148-
if(!inputSocketMapManager.containsKey(input)){
147+
for (InputSocketController input : inputSockets) {
148+
if (!inputSocketMapManager.containsKey(input)) {
149149
inputSocketMapManager.add(input);
150150
}
151151
}
@@ -154,27 +154,27 @@ private void moveStepLeft() {
154154

155155
@FXML
156156
private void moveStepRight() {
157-
for(InputSocketController input: inputSockets){
158-
if(input.getSocket().getConnections().isEmpty()){
157+
for (InputSocketController input : inputSockets) {
158+
if (input.getSocket().getConnections().isEmpty()) {
159159
inputSocketMapManager.remove(input);
160160
}
161161
}
162162
//pipeline.moveStep(step, +1);
163163
}
164164

165165
@FXML
166-
private void expand(){
167-
if(expanded){
168-
for(InputSocketController input: inputSockets){
169-
if(input.getSocket().getConnections().isEmpty()) {
166+
private void expand() {
167+
if (expanded) {
168+
for (InputSocketController input : inputSockets) {
169+
if (input.getSocket().getConnections().isEmpty()) {
170170
inputSocketMapManager.remove(input);
171171
}
172172
}
173173
expandIcon.setImage(new Image("/edu/wpi/grip/ui/icons/down.png"));
174174
expanded = false;
175175
} else {
176-
for(InputSocketController input: inputSockets){
177-
if(!inputSocketMapManager.containsKey(input)){
176+
for (InputSocketController input : inputSockets) {
177+
if (!inputSocketMapManager.containsKey(input)) {
178178
inputSocketMapManager.add(input);
179179
}
180180
}

0 commit comments

Comments
 (0)