Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 102866 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/core/launcher/Main.java (-5 / +9 lines)
Lines 80-90 Link Here
80
    private boolean initialize = false;
80
    private boolean initialize = false;
81
    private Process showProcess = null;
81
    private Process showProcess = null;
82
    private boolean splashDown = false;
82
    private boolean splashDown = false;
83
    private final Thread endSplashHandler = new Thread() {
83
    public final class EndSplashHandler extends Thread {
84
        public void run() {
84
    	public void run() {
85
            takeDownSplash();
85
    		takeDownSplash();
86
        }
86
    	}
87
    };
87
    	public OutputStream getOutputStream() {
88
			return showProcess == null ? null : showProcess.getOutputStream();
89
		}
90
    }
91
    private final Thread endSplashHandler = new EndSplashHandler();
88
92
89
    // command line args
93
    // command line args
90
    private static final String FRAMEWORK = "-framework"; //$NON-NLS-1$
94
    private static final String FRAMEWORK = "-framework"; //$NON-NLS-1$

Return to bug 102866