(Properties props, String[] names)
| 643 | } |
| 644 | |
| 645 | private static int readColor(Properties props, String[] names) |
| 646 | { |
| 647 | for (int i = 0; i < names.length; ++i) |
| 648 | { |
| 649 | String s = names[i]; |
| 650 | int j = readColor(props, s); |
| 651 | |
| 652 | if (j >= 0) |
| 653 | { |
| 654 | return j; |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | return -1; |
| 659 | } |
| 660 | |
| 661 | private static int readColor(Properties props, String name) |
| 662 | { |
no test coverage detected