Address FindBugs warnings

This commit is contained in:
Andrew Gaul 2014-08-31 21:39:09 -07:00
parent db09fca8a9
commit 19f071915a
1 changed files with 2 additions and 1 deletions

View File

@ -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) &&