Selaa lähdekoodia

new handle provider (pr141730): new interface method implementations

tags/PRE_PIPELINE
aclement 18 vuotta sitten
vanhempi
commit
57120150bf

+ 10
- 0
asm/src/org/aspectj/asm/internal/FullPathHandleProvider.java Näytä tiedosto

@@ -88,4 +88,14 @@ public class FullPathHandleProvider implements IElementHandleProvider {
ipe.setHandleIdentifier(handle);
return handle;
}

public boolean dependsOnLocation() {
// handles contain information from the source location therefore
// return true;
return true;
}

public void initialize() {
// nothing to initialize...
}
}

+ 10
- 0
asm/src/org/aspectj/asm/internal/OptimizedFullPathHandleProvider.java Näytä tiedosto

@@ -112,4 +112,14 @@ public class OptimizedFullPathHandleProvider implements IElementHandleProvider {
ipe.setHandleIdentifier(handle);
return handle;
}

public boolean dependsOnLocation() {
// handles contain information from the source location therefore
// return true;
return true;
}

public void initialize() {
// nothing to initialize
}
}

Loading…
Peruuta
Tallenna