You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/java/codeGen/org/optimizationBenchmarking/utils/math/functions/compound/CompoundFunctionCodeGenerator.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1699,7 +1699,10 @@ private final void __const(final int m) throws IOException {
1699
1699
.getSimpleName());
1700
1700
bw.print(" implements ");//$NON-NLS-1$
1701
1701
bw.print(Iterable.class.getSimpleName());
1702
-
bw.println("<Object> {");//$NON-NLS-1$
1702
+
bw.println("<Object>");//$NON-NLS-1$
1703
+
bw.print(',');
1704
+
bw.print(ICloneable.class.getSimpleName());
1705
+
bw.print('{');
1703
1706
1704
1707
bw.println();
1705
1708
bw.println("/** the serial version uid */");//$NON-NLS-1$
0 commit comments