Skip to content

Commit 29ba35c

Browse files
committed
Fix code style
1 parent 04d19cd commit 29ba35c

File tree

1 file changed

+9
-9
lines changed
  • core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/resolver/process

1 file changed

+9
-9
lines changed

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/resolver/process/ProcessLauncher.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ public boolean equals( final Object obj ) {
101101
return false;
102102
}
103103
@SuppressWarnings( "unchecked" ) final ExecutionContext that = (ExecutionContext) obj;
104-
return Objects.equals( arguments, that.arguments ) &&
105-
Objects.equals( stdin, that.stdin ) &&
106-
Objects.equals( workingDirectory, that.workingDirectory ) &&
107-
Objects.equals( processConsumer, that.processConsumer );
104+
return Objects.equals( arguments, that.arguments )
105+
&& Objects.equals( stdin, that.stdin )
106+
&& Objects.equals( workingDirectory, that.workingDirectory )
107+
&& Objects.equals( processConsumer, that.processConsumer );
108108
}
109109

110110
@Override
@@ -114,11 +114,11 @@ public int hashCode() {
114114

115115
@Override
116116
public String toString() {
117-
return "ExecutionContext[" +
118-
"arguments=" + arguments + ", " +
119-
"stdin=" + stdin + ", " +
120-
"workingDirectory=" + workingDirectory + ", " +
121-
"processConsumer=" + processConsumer + ']';
117+
return "ExecutionContext["
118+
+ "arguments=" + arguments + ", "
119+
+ "stdin=" + stdin + ", "
120+
+ "workingDirectory=" + workingDirectory + ", "
121+
+ "processConsumer=" + processConsumer + ']';
122122
}
123123
}
124124

0 commit comments

Comments
 (0)