File tree Expand file tree Collapse file tree
ui/src/main/java/edu/wpi/grip/ui/pipeline Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44import edu .wpi .grip .core .Step ;
55import edu .wpi .grip .core .sockets .InputSocket ;
66import edu .wpi .grip .core .sockets .OutputSocket ;
7- import edu .wpi .grip .core .sockets .Socket ;
87import edu .wpi .grip .core .sockets .SocketHint ;
98import edu .wpi .grip .ui .Controller ;
109import edu .wpi .grip .ui .annotations .ParametrizedController ;
@@ -96,7 +95,7 @@ private void initialize() {
9695
9796 if (step .getInputSockets ().stream ()
9897 .allMatch (inputSocket -> inputSocket .getSocketHint ().getView ()
99- .equals (SocketHint .View .NONE ))){
98+ .equals (SocketHint .View .NONE ))) {
10099 expand .setManaged (false );
101100 } else {
102101 expandIcon .setImage (new Image ("/edu/wpi/grip/ui/icons/up.png" ));
@@ -106,7 +105,7 @@ private void initialize() {
106105 for (InputSocket <?> inputSocket : step .getInputSockets ()) {
107106 InputSocketController tempSocket = inputSocketControllerFactory .create (inputSocket );
108107 inputSocketMapManager .add (tempSocket );
109- if (!inputSocket .getSocketHint ().getView ().equals (SocketHint .View .NONE )) {
108+ if (!inputSocket .getSocketHint ().getView ().equals (SocketHint .View .NONE )) {
110109 inputSockets .add (tempSocket );
111110 }
112111 }
You can’t perform that action at this time.
0 commit comments