()
| 155 | } |
| 156 | |
| 157 | private void stopRecording() { |
| 158 | if (!recording) |
| 159 | return; |
| 160 | recording = false; |
| 161 | if (System.currentTimeMillis() - recordingStarted <= 250) { |
| 162 | error(MinecraftFactory.getClassProxyCallback().translate("chat.audio.hint")); |
| 163 | } |
| 164 | synchronized (LOCK) { |
| 165 | closeLine(); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | @Override |
| 170 | public void guiClosed() { |
no test coverage detected