Skip to content

Commit

Permalink
remove unused getters
Browse files Browse the repository at this point in the history
  • Loading branch information
Janne Sinivirta committed Mar 13, 2015
1 parent 3476a35 commit c494208
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ public String getPackageName() {
return packageName;
}

public String getClassName() {
return className;
}

public String getDescription() {
return description;
}

@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
Expand Down
8 changes: 0 additions & 8 deletions drm-core/src/main/java/com/nitorcreations/domain/Edge.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@ public Edge(DomainObject source, DomainObject target, EdgeType type) {
this(source, target, type, null);
}

public DomainObject getSource() {
return source;
}

public DomainObject getTarget() {
return target;
}

@Override
public final int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
Expand Down

0 comments on commit c494208

Please sign in to comment.