()
| 965 | } |
| 966 | |
| 967 | @Override |
| 968 | public String[] getHotbarKeys() { |
| 969 | String[] result = new String[9]; |
| 970 | bsr[] hotbarBindings = getGameSettings().as; |
| 971 | for (int i = 0; i < Math.min(result.length, hotbarBindings.length); i++) { |
| 972 | result[i] = getKeyDisplayStringShort(hotbarBindings[i].i()); |
| 973 | } |
| 974 | return result; |
| 975 | } |
| 976 | |
| 977 | @Override |
| 978 | public String getKeyDisplayStringShort(int key) { |
nothing calls this directly
no test coverage detected