Update Card instance for the given PaperCard if any
(PaperCard pc)
| 7555 | * Update Card instance for the given PaperCard if any |
| 7556 | */ |
| 7557 | public static void updateCard(PaperCard pc) { |
| 7558 | Card res = cp2card.get(pc); |
| 7559 | if (res != null) { |
| 7560 | cp2card.put(pc, fromPaperCard(pc, null)); |
| 7561 | } |
| 7562 | } |
| 7563 | |
| 7564 | public String getOracleText() { |
| 7565 | return currentState.getOracleText(); |
no test coverage detected