Changeset 4037
- Timestamp:
- Dec 5, 2007, 2:16:16 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/core/net/sf/basedb/plugins/Base1PluginExecuter.java
r4031 r4037 609 609 if (command.equals(Request.COMMAND_EXECUTE)) 610 610 { 611 String msg = ""; 611 612 DbControl dc = null; 612 613 File stdin = null; … … 619 620 getConfigureJobParameters(); 620 621 621 622 622 //Export 623 623 try … … 639 639 640 640 //Execution 641 String msg = "";642 641 try 643 642 { … … 675 674 return; 676 675 } 677 else678 {679 response.setDone(msg);680 }681 676 } 682 677 catch (Exception e) … … 702 697 progress.display(70, "Importing data from plugin."); 703 698 importData(dc, stdout, trans); 704 response.setDone(msg);705 699 } 706 700 catch (Exception ex) … … 760 754 } 761 755 } 762 response.setDone( "");756 response.setDone(msg); 763 757 } 764 758 else … … 1219 1213 1220 1214 @param stream The stream that the parser should read from. 1221 @return The initiali zed parser1215 @return The initialised parser 1222 1216 */ 1223 1217 private FlatFileParser getInitializedFlatFileParser(InputStream stream)
Note: See TracChangeset
for help on using the changeset viewer.