Example usage for org.eclipse.jdt.internal.compiler.lookup BlockScope removeTrackingVar

List of usage examples for org.eclipse.jdt.internal.compiler.lookup BlockScope removeTrackingVar

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.lookup BlockScope removeTrackingVar.

Prototype

public void removeTrackingVar(FakedTrackingVariable trackingVariable) 

Source Link

Document

When are no longer interested in this tracking variable - remove it.

Usage

From source file:org.eclipse.objectteams.internal.jdt.nullity.Compatibility.java

License:Open Source License

public void removeTrackingVar(BlockScope currentScope, IFakedTrackingVariable trackingVariable) {
    currentScope.removeTrackingVar((FakedTrackingVariable) trackingVariable);
}