File tree 1 file changed +1
-4
lines changed
src/main/java/com/spotify/docker/client/messages
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -78,9 +78,6 @@ final class AutoValue_ImageInfo extends ImageInfo {
78
78
}
79
79
this .created = created ;
80
80
this .container = container ;
81
- if (containerConfig == null ) {
82
- throw new NullPointerException ("Null containerConfig" );
83
- }
84
81
this .containerConfig = containerConfig ;
85
82
if (dockerVersion == null ) {
86
83
throw new NullPointerException ("Null dockerVersion" );
@@ -226,7 +223,7 @@ public boolean equals(Object o) {
226
223
&& (this .comment .equals (that .comment ()))
227
224
&& (this .created .equals (that .created ()))
228
225
&& ((this .container == null ) ? (that .container () == null ) : this .container .equals (that .container ()))
229
- && (this .containerConfig .equals (that .containerConfig ()))
226
+ && (( this . containerConfig == null ) ? ( that . containerConfig () == null ) : this .containerConfig .equals (that .containerConfig ()))
230
227
&& (this .dockerVersion .equals (that .dockerVersion ()))
231
228
&& (this .author .equals (that .author ()))
232
229
&& (this .config .equals (that .config ()))
You can’t perform that action at this time.
0 commit comments