(final long timestamp, final Iterable<Player> list)
| 3792 | } |
| 3793 | |
| 3794 | public final void addMayLookAt(final long timestamp, final Iterable<Player> list) { |
| 3795 | PlayerCollection plist = new PlayerCollection(list); |
| 3796 | mayLook.put(timestamp, plist); |
| 3797 | if (isFaceDown() && isInZone(ZoneType.Exile)) { |
| 3798 | mayLookFaceDownExile.addAll(plist); |
| 3799 | } |
| 3800 | updateMayLook(); |
| 3801 | } |
| 3802 | |
| 3803 | public final void removeMayLookAt(final long timestamp) { |
| 3804 | if (mayLook.remove(timestamp) != null) { |
no test coverage detected