Displaying differences for changeset
 
display as  

src/java/m/rhem/model/RhemModel.java

@@ -184,8 +184,15 @@
                                 line = bufferedReader.readLine();
                             }
                             String[] test = line.split("\\s+");
-                            for (int i = 1; i < test.length; i++) {
-                                writer.print(String.format("%-25s", test[i]));
+                            if (c == 2) {
+                                writer.print(String.format("%-25s", test[1] + test[2]));
+                                for (int i = 3; i < test.length; i++) {
+                                    writer.print(String.format("%-25s", test[i]));
+                                }
+                            } else {
+                                for (int i = 1; i < test.length; i++) {
+                                    writer.print(String.format("%-25s", test[i]));
+                                }
                             }
                             writer.println();
                             c++;