Skip to content

Commit

Permalink
remove unused methods
Browse files Browse the repository at this point in the history
  • Loading branch information
saschaszott authored Nov 26, 2024
1 parent 583cdb8 commit 63dea87
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions dspace-api/src/main/java/org/dspace/browse/BrowseIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -543,19 +543,6 @@ public String getDistinctTableName() {
return getTableName(false, false, true, false);
}

/**
* Get the name of the column that is used to store the default value column
*
* @return the name of the value column
*/
public String getValueColumn() {
if (!isDate()) {
return "sort_text_value";
} else {
return "text_value";
}
}

/**
* Get the name of the primary key index column
*
Expand All @@ -565,15 +552,6 @@ public String getIndexColumn() {
return "id";
}

/**
* Is the browse index type for a date?
*
* @return true if date type, false if not
*/
public boolean isDate() {
return "date".equals(getDataType());
}

/**
* Is the browse index of display type single?
*
Expand Down

0 comments on commit 63dea87

Please sign in to comment.