(String s)
| 736 | } |
| 737 | |
| 738 | private static String capitalizeFirst(String s) { |
| 739 | if (s == null || s.isEmpty()) return s; |
| 740 | char first = s.charAt(0); |
| 741 | char upper = Character.toUpperCase(first); |
| 742 | if (s.length() == 1) return String.valueOf(upper); |
| 743 | return upper + s.substring(1); |
| 744 | } |
| 745 | |
| 746 | private static Class<?> tryLoadClass(String fqcn) { |
| 747 | try { |
no test coverage detected