Skip to content
Snippets Groups Projects
Commit 2f9ffca6 authored by User expired's avatar User expired
Browse files

added findbugs ignore annotation

parent aeb8b79e
No related branches found
No related tags found
No related merge requests found
......@@ -617,6 +617,10 @@ public class Database {
return new Link(linkId, start, end, routeId);
}
@SuppressFBWarnings(
value = "UPM_UNCALLED_PRIVATE_METHOD",
justification = "Calling of this method is handeled by a boolean flag"
)
private Map<Node, Long> getAdjNodeCostByInQuery(final NodeConnection nConnection, final Collection<Integer> dateCodes, final long fromTime, final long toTime) {
final Map<Node, Long> results = new LinkedHashMap<>();
final Node node = nConnection.getSourceNode();
......@@ -661,6 +665,10 @@ public class Database {
return results;
}
@SuppressFBWarnings(
value = "UPM_UNCALLED_PRIVATE_METHOD",
justification = "Calling of this method is handeled by a boolean flag"
)
private Map<Node, Long> getAdjNodeCostByLoops(final NodeConnection nConnection, final Collection<Integer> dateCodes, final long fromTime, final long toTime) {
final Node node = nConnection.getSourceNode();
final Set<Entry<Node, Collection<Link>>> entries = nConnection.getTargetEntries().entrySet();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment