()
| 1001 | } |
| 1002 | |
| 1003 | @Override |
| 1004 | public String[] getHotbarKeys() { |
| 1005 | String[] result = new String[9]; |
| 1006 | bhy[] hotbarBindings = getGameSettings().ap; |
| 1007 | for (int i = 0; i < Math.min(result.length, hotbarBindings.length); i++) { |
| 1008 | result[i] = getKeyDisplayStringShort(hotbarBindings[i].j()); |
| 1009 | } |
| 1010 | return result; |
| 1011 | } |
| 1012 | |
| 1013 | @Override |
| 1014 | public String getKeyDisplayStringShort(int key) { |
nothing calls this directly
no test coverage detected