(String k1, String k2)
| 519 | } |
| 520 | |
| 521 | private static boolean cardsMatch(String k1, String k2) { |
| 522 | k1 = k1.replaceAll("n", "\\\\d"); |
| 523 | return k2.matches(k1); |
| 524 | } |
| 525 | |
| 526 | // /** |
| 527 | // * Creates a FITS header for an image which doesn't have one already. |
nothing calls this directly
no test coverage detected