Changeset 215


Ignore:
Timestamp:
11/08/02 17:09:16 (20 years ago)
Author:
piso
Message:

Removed trace output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/j/Shell.java

    r164 r215  
    33 *
    44 * Copyright (C) 1998-2002 Peter Graves
    5  * $Id: Shell.java,v 1.14 2002-10-19 13:30:35 piso Exp $
     5 * $Id: Shell.java,v 1.15 2002-11-08 17:09:16 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    174174    public void dispose()
    175175    {
    176         Log.debug("Shell.dispose");
    177176        if (!checkProcess()) {
    178177            Log.debug("checkProcess returned false");
     
    183182            {
    184183                try {
    185                     Log.debug("stdin.write(3)");
    186184                    stdin.write(3);
    187185                    stdin.flush();
    188                     Log.debug("stdin.write(\"exit\\n\")");
    189186                    stdin.write("exit\n");
    190187                    stdin.flush();
     
    202199                    Log.error(e);
    203200                }
    204                 Log.debug("dispose thread exiting");
    205201            }
    206202        };
     
    259255                    if (p != null)
    260256                        p.waitFor();
    261                     Log.debug("watcher thread waitFor() returned");
    262257                    setProcess(null);
    263258                    if (stdoutThread != null)
     
    278273                if (stderrThread != null)
    279274                    SwingUtilities.invokeLater(processExitedRunnable);
    280                 Log.debug("watcher thread exiting");
    281275            }
    282276        };
Note: See TracChangeset for help on using the changeset viewer.