in build-tools/src/main/java/co/elastic/otel/android/compilation/tools/data/License.java [15:20]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
License license = (License) o;
return Objects.equals(id, license.id) && Objects.equals(name, license.name);
}