(String name)
| 971 | } |
| 972 | |
| 973 | public boolean isRebalanced(String name) { |
| 974 | if (!name.startsWith("A-")) { |
| 975 | return false; |
| 976 | } |
| 977 | for (PaperCard pc : this.getCommonCards().getAllCards(name)) { |
| 978 | CardEdition e = this.editions.get(pc.getEdition()); |
| 979 | if (e != null && e.isRebalanced(name)) { |
| 980 | return true; |
| 981 | } |
| 982 | } |
| 983 | return false; |
| 984 | } |
| 985 | public String getOtherImageKey(String name, String set) { |
| 986 | if (this.editions.get(set) != null) { |
| 987 | String realSetCode = this.editions.get(set).getOtherSet(name); |
nothing calls this directly
no test coverage detected