146147148149150151152153154155156
try { ArrayValue result = new ArrayValueImpl(); StringValue line; while ((line = is.readLine(Integer.MAX_VALUE)) != null && line.length() > 0) result.put(line); return result; } catch (IOException e) {
144145146147148149150151152153154