core/src/com/jediterm/core/typeahead/TerminalTypeAheadManager.java [318:324]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final byte[] bytes = new byte[bytesAsInt.length];
        int i = 0;
        for (final int byteAsInt : bytesAsInt) {
          bytes[i] = (byte) byteAsInt;
          i++;
        }
        return bytes;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/com/jediterm/terminal/util/CharUtils.java [101:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final byte[] bytes = new byte[bytesAsInt.length];
    int i = 0;
    for (final int byteAsInt : bytesAsInt) {
      bytes[i] = (byte) byteAsInt;
      i++;
    }
    return bytes;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



