Changeset 4037


Ignore:
Timestamp:
Dec 5, 2007, 2:16:16 PM (15 years ago)
Author:
Johan Enell
Message:

Fixes #861

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plugins/core/net/sf/basedb/plugins/Base1PluginExecuter.java

    r4031 r4037  
    609609    if (command.equals(Request.COMMAND_EXECUTE))
    610610    {
     611      String msg = "";
    611612      DbControl dc = null;
    612613      File stdin = null;
     
    619620        getConfigureJobParameters();
    620621 
    621        
    622622        //Export
    623623        try
     
    639639       
    640640        //Execution
    641         String msg = "";
    642641        try
    643642        {
     
    675674            return;
    676675          }
    677           else
    678           {
    679             response.setDone(msg);
    680           }
    681676        }
    682677        catch (Exception e)
     
    702697          progress.display(70, "Importing data from plugin.");
    703698          importData(dc, stdout, trans);
    704           response.setDone(msg);
    705699        }
    706700        catch (Exception ex)
     
    760754        }
    761755      }
    762       response.setDone("");
     756      response.setDone(msg);
    763757    }
    764758    else
     
    12191213   
    12201214    @param stream The stream that the parser should read from.
    1221     @return The initialized parser
     1215    @return The initialised parser
    12221216  */
    12231217  private FlatFileParser getInitializedFlatFileParser(InputStream stream)
Note: See TracChangeset for help on using the changeset viewer.