239240241242243244245246
public HWatch watch(String id, boolean checked) { HWatch w = watches.get(id); if (w != null) return w; if (checked) throw new UnknownWatchException(id); return null; }
221222223224225226227228
public HWatch watch(String id, boolean checked) { HWatch w = onWatch(id); if (w != null) return w; if (checked) throw new UnknownWatchException(id); return null; }