View | Details | Raw Unified | Return to bug 325426 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java (-2 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2012 IBM Corporation and others.
2
 * Copyright (c) 2000, 2014 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 1482-1488 Link Here
1482
	 * @see org.eclipse.debug.core.model.ISuspendResume#resume()
1482
	 * @see org.eclipse.debug.core.model.ISuspendResume#resume()
1483
	 */
1483
	 */
1484
	public synchronized void resume() throws DebugException {
1484
	public synchronized void resume() throws DebugException {
1485
		if (!isSuspended() && getDebugTarget().isSuspended()) {
1485
		if (getDebugTarget().isSuspended()) {
1486
			getDebugTarget().resume();
1486
			getDebugTarget().resume();
1487
		} else {
1487
		} else {
1488
			fClientSuspendRequest = false;
1488
			fClientSuspendRequest = false;

Return to bug 325426