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: value-processor/src/org/immutables/value/processor/Immutables.generator
+16-15Lines changed: 16 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1029,14 +1029,14 @@ return new [type.typeValue.relativeRaw][type.generics.diamond]([output.linesShor
1029
1029
[if type.generateWithInterface]
1030
1030
[-- we actually don't need those implementation, signatures are good enough --]
1031
1031
[for v in type.settableAttributes]
1032
+
1032
1033
[if v.arrayType]
1033
-
@Override
1034
1034
[varargsSafety v]
1035
-
public final [type.typeAbstract.relative] [v.names.with]([v.elementType]... elements) { throw new UnsupportedOperationException(); }
1035
+
public [type.typeAbstract.relative] [v.names.with]([v.elementType]... elements) { throw new UnsupportedOperationException(); }
1036
1036
[else if v.collectionType]
1037
1037
@Override
1038
1038
[varargsSafety v]
1039
-
public final [type.typeAbstract.relative] [v.names.with]([v.atNullability][tuNullParam v][v.unwrappedElementType][atForceTypeuseNullable v]... elements) { throw new UnsupportedOperationException(); }
1039
+
public [type.typeAbstract.relative] [v.names.with]([v.atNullability][tuNullParam v][v.unwrappedElementType][atForceTypeuseNullable v]... elements) { throw new UnsupportedOperationException(); }
1040
1040
@Override
1041
1041
public [type.typeAbstract.relative] [v.names.with]([v.atNullability][tuNullable v]Iterable<[qExtends v][tuNullParam v][v.wrappedElementType]>) { throw new UnsupportedOperationException(); }
0 commit comments