()
| 957 | } |
| 958 | |
| 959 | @Override |
| 960 | public String[] getHotbarKeys() { |
| 961 | String[] result = new String[9]; |
| 962 | bca[] hotbarBindings = getGameSettings().al; |
| 963 | for (int i = 0; i < Math.min(result.length, hotbarBindings.length); i++) { |
| 964 | result[i] = getKeyDisplayStringShort(hotbarBindings[i].j()); |
| 965 | } |
| 966 | return result; |
| 967 | } |
| 968 | |
| 969 | @Override |
| 970 | public String getKeyDisplayStringShort(int key) { |
nothing calls this directly
no test coverage detected