blob: af38655bb60ae1d4f443a08eb24d450c0b4b026d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.refactoring.code.flow;
class WhileFlowInfo extends FlowInfo {
public void mergeCondition(FlowInfo info, FlowContext context) {
if (info == null)
return;
mergeAccessModeSequential(info, context);
}
public void mergeAction(FlowInfo info, FlowContext context) {
if (info == null)
return;
info.mergeEmptyCondition(context);
mergeSequential(info, context);
}
}