mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
deleted commented out code
This commit is contained in:
parent
6836fcd610
commit
86a6251997
1 changed files with 0 additions and 21 deletions
|
@ -70,28 +70,7 @@ public class Watchers extends HashMap<String, Watcher> {
|
|||
}
|
||||
}
|
||||
|
||||
// public void setSourceId(UUID sourceId) {
|
||||
// for (Watcher watcher: this.values()) {
|
||||
// watcher.setSourceId(sourceId);
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// public void setControllerId(UUID controllerId) {
|
||||
// for (Watcher watcher: this.values()) {
|
||||
// watcher.setControllerId(controllerId);
|
||||
// }
|
||||
// }
|
||||
|
||||
public Watcher get(String key, UUID id) {
|
||||
return this.get(id + key);
|
||||
}
|
||||
|
||||
// public Watcher get(UUID controllerId, UUID sourceId, String key) {
|
||||
// for (Watcher watcher: this) {
|
||||
// if ((watcher.getControllerId() == null || watcher.getControllerId().equals(controllerId)) && watcher.getKey().equals(key) && watcher.getSourceId().equals(sourceId))
|
||||
// return watcher;
|
||||
// }
|
||||
// return null;
|
||||
// }
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue