public boolean equals()

in rest-cxf-opentelemetry/rest-cxf-otel-common/src/main/java/org/apache/camel/example/springboot/cxf/otel/RandomNumber.java [62:67]


	public boolean equals(final Object o) {
		if (this == o) return true;
		if (o == null || getClass() != o.getClass()) return false;
		final RandomNumber that = (RandomNumber) o;
		return Objects.equals(getNumber(), that.getNumber());
	}