268269270271272273274275
*/ private void write(final String str) { try { this.os.write(str.getBytes()); } catch (final IOException e) { throw new BotError(e); } }
106107108109110111112113114115
} this.peekLength = depth + 1; } } catch (final IOException e) { throw new BotError(e); } return this.peekBytes[depth]; }
150151152153154155156157
this.peekBytes[i] = this.peekBytes[i + 1]; } return result; } catch (final IOException e) { throw new BotError(e); } }