(Player p)
| 32 | private static final long serialVersionUID = 7005892740909549086L; |
| 33 | |
| 34 | public static PlayerView get(Player p) { |
| 35 | return p == null ? null : p.getView(); |
| 36 | } |
| 37 | |
| 38 | public static TrackableCollection<PlayerView> getCollection(Iterable<Player> players) { |
| 39 | if (players == null) { |
no test coverage detected