Skip to content

Commit

Permalink
HSEARCH-3478 Sonar: Type parameter names should comply with a naming …
Browse files Browse the repository at this point in the history
…convention
  • Loading branch information
yrodiere committed Feb 8, 2019
1 parent 5cc352f commit b4fd85b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -12,7 +12,7 @@
import org.hibernate.Hibernate;

@MappedSuperclass
public abstract class AbstractEntity<ID> {
public abstract class AbstractEntity<I> {

@Override
public boolean equals(Object o) {
Expand Down Expand Up @@ -42,7 +42,7 @@ public String toString() {
.toString();
}

public abstract ID getId();
public abstract I getId();

protected abstract String getDescriptionForToString();
}

0 comments on commit b4fd85b

Please sign in to comment.