(Object... lst)
| 44 | } |
| 45 | |
| 46 | public static Map<String, Object> O(Object... lst) { |
| 47 | LinkedHashMap<String, Object> map = new LinkedHashMap<>(); |
| 48 | for (int i = 0; i < lst.length; i += 2) { |
| 49 | map.put(lst[i].toString(), lst[i + 1]); |
| 50 | } |
| 51 | return map; |
| 52 | } |
| 53 | |
| 54 | // NOTE: the specifics of indentation may change in the future! |
| 55 | @Test |
no test coverage detected