()
| 978 | } |
| 979 | |
| 980 | @Override |
| 981 | public String[] getHotbarKeys() { |
| 982 | String[] result = new String[9]; |
| 983 | avb[] hotbarBindings = getGameSettings().aw; |
| 984 | for (int i = 0; i < Math.min(result.length, hotbarBindings.length); i++) { |
| 985 | result[i] = getKeyDisplayStringShort(hotbarBindings[i].i()); |
| 986 | } |
| 987 | return result; |
| 988 | } |
| 989 | |
| 990 | @Override |
| 991 | public String getKeyDisplayStringShort(int key) { |
nothing calls this directly
no test coverage detected