Changeset 11244
- Timestamp:
- 07/18/10 16:34:36 (7 weeks ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
jsystemFramework/trunk/systemObjects/core/scriptingLanguages/src/jsystem/sysobj/scripting/tcl/TclShellLocal.java
r11083 r11244 21 21 import jsystem.utils.FileUtils; 22 22 23 24 23 /** 25 24 * @author guy.arieli … … 64 63 65 64 /** 66 * La nuch Tcl shell.65 * Launch Tcl shell. 67 66 * 68 67 */ … … 296 295 fw.close(); 297 296 } else { 298 // Enumeration en = p.keys();299 // while(en.hasMoreElements()){300 //301 // }302 297 BufferedReader reader = new BufferedReader(new InputStreamReader(stream)); 303 298 FileWriter fw = new FileWriter(tempFile); … … 363 358 if (m.find()) { 364 359 System.out.println("find text: " + line); 365 // line = line.substring(0, m.start(1)) + key[3]+ line.substring(m.end(1), line.length());366 360 line = line.substring(0, m.start(1)) + key[2]+ line.substring(m.end(1), line.length()); 367 361 entryMap.put(key, "done"); … … 375 369 if (m.find()) { 376 370 System.out.println("find text: " + line); 377 // line = line + "\n" + key[0] + key[1] + "," + key[2] + "\t\t{"+ key[3] + "}";378 371 line = line + "\n" + key[0] + key[1] + "\t\t{"+ key[2] + "}"; 379 372 entryMap.put(key, "done");
