public boolean equals()

in src/main/java/com/amazonaws/schemamanager/properties/RegistryClientConfig.java [34:48]


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