Skip to content

Commit

Permalink
Remove duplicated method
Browse files Browse the repository at this point in the history
Probably due to a rebase
  • Loading branch information
inigo-cobian committed Jan 22, 2025
1 parent c120394 commit 322e81e
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,6 @@ private boolean isDateInsideRange(Time rangeTime, Date date) {
return (rangeStart <= date.getTime() && rangeEnd <= date.getTime());
}

private boolean isDateInsideRange(Time rangeTime, Date date) {
long rangeStart = rangeTime.getStart().getMilliseconds();
long rangeEnd = rangeTime.getEnd().getMilliseconds();
return (rangeStart <= date.getTime() && rangeEnd <= date.getTime());
}

@Override
public void getEncodedData(IResource resource, Map<String, String> urnParameters, IGeometry geometry, Builder builder,
IContextualizationScope scope) {
Expand Down

0 comments on commit 322e81e

Please sign in to comment.