mirror of https://github.com/apache/jclouds.git
Address FindBugs warnings
This commit is contained in:
parent
db09fca8a9
commit
19f071915a
|
@ -24,6 +24,7 @@ import com.google.gson.annotations.SerializedName;
|
|||
import org.jclouds.javax.annotation.Nullable;
|
||||
|
||||
import java.beans.ConstructorProperties;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
|
@ -186,7 +187,7 @@ public class Container {
|
|||
Objects.equal(this.name, that.name) &&
|
||||
Objects.equal(this.created, that.created) &&
|
||||
Objects.equal(this.path, that.path) &&
|
||||
Objects.equal(this.args, that.args) &&
|
||||
Arrays.equals(this.args, that.args) &&
|
||||
Objects.equal(this.containerConfig, that.containerConfig) &&
|
||||
Objects.equal(this.state, that.state) &&
|
||||
Objects.equal(this.image, that.image) &&
|
||||
|
|
Loading…
Reference in New Issue