This commit is contained in:
Miriam Baglioni 2020-07-29 16:57:45 +02:00
parent dac9f7cc10
commit 6b63668d3f
2 changed files with 1 additions and 4 deletions

View File

@ -15,7 +15,6 @@ public class Context extends Qualifier {
this.provenance = provenance; this.provenance = provenance;
} }
@Override @Override
public int hashCode() { public int hashCode() {
String provenance = new String(); String provenance = new String();
@ -23,6 +22,4 @@ public class Context extends Qualifier {
return Objects.hash(getCode(), getLabel(), provenance); return Objects.hash(getCode(), getLabel(), provenance);
} }
} }

View File

@ -30,7 +30,7 @@ public class Provenance implements Serializable {
return p; return p;
} }
public String toString(){ public String toString() {
return provenance + trust; return provenance + trust;
} }
} }