(ModeContribution contrib,
Map<File, ModeContribution> known)
| 527 | |
| 528 | |
| 529 | static private File getFileForContrib(ModeContribution contrib, |
| 530 | Map<File, ModeContribution> known) { |
| 531 | for (Entry<File, ModeContribution> entry : known.entrySet()) { |
| 532 | if (entry.getValue() == contrib) { |
| 533 | return entry.getKey(); |
| 534 | } |
| 535 | } |
| 536 | return null; |
| 537 | } |
| 538 | |
| 539 | |
| 540 | /** |
no test coverage detected