Skip to content

Commit

Permalink
remove unused constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
scarytom committed Aug 4, 2012
1 parent 99c20b9 commit 7ed5954
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.netmelody.cieye.server.observation;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
Expand Down Expand Up @@ -120,9 +119,6 @@ private static final class StatusResult {
private final ImmutableMap<TargetId, TargetDetail> status;
private final long timestamp;

public StatusResult() {
this(new ArrayList<TargetDetail>());
}
public StatusResult(Iterable<TargetDetail> status) {
this(Maps.uniqueIndex(status, toId()), System.currentTimeMillis());
}
Expand Down

0 comments on commit 7ed5954

Please sign in to comment.