public boolean equals()

in src/main/java/com/amazonaws/schemamanager/properties/AnalyzerConfig.java [43:57]


	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		AnalyzerConfig other = (AnalyzerConfig) obj;
		if (defaultCompatibility == null) {
			if (other.defaultCompatibility != null)
				return false;
		} else if (!defaultCompatibility.equals(other.defaultCompatibility))
			return false;
		return true;
	}