diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-05-29 20:13:05 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-05-29 20:13:05 +0200 |
commit | 912b96c1e55f9e400505cab2963a28ca1433b275 (patch) | |
tree | 9f790e3a9084291560582cb2b01db9c8acad4ce9 /src/eclipseAgent | |
parent | 2c1e300f1b171be4e06fe267097630a79a13fde0 (diff) | |
download | lombok-912b96c1e55f9e400505cab2963a28ca1433b275.tar.gz lombok-912b96c1e55f9e400505cab2963a28ca1433b275.tar.bz2 lombok-912b96c1e55f9e400505cab2963a28ca1433b275.zip |
#683: URI not absolute errors in mvn builds due to search for lombok.config being broken.
Diffstat (limited to 'src/eclipseAgent')
-rw-r--r-- | src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java index ccee5575..e14d1367 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java +++ b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java @@ -677,6 +677,7 @@ public class EclipsePatcher extends Agent { .request(StackRequest.PARAM1) .wrapMethod(new Hook(PATCH_EXTENSIONMETHOD, "resolveType", TYPE_BINDING_SIG, TYPE_BINDING_SIG, MESSAGE_SEND_SIG, BLOCK_SCOPE_SIG)) .build()); + sm.addScript(replaceMethodCall() .target(new MethodTarget(MESSAGE_SEND_SIG, "resolveType", TYPE_BINDING_SIG, BLOCK_SCOPE_SIG)) .methodToReplace(new Hook(PROBLEM_REPORTER_SIG, "errorNoMethodFor", "void", MESSAGE_SEND_SIG, TYPE_BINDING_SIG, TYPE_BINDINGS_SIG)) |