aboutsummaryrefslogtreecommitdiff
path: root/src/eclipseAgent
diff options
context:
space:
mode:
authorRoland Praml <praml@foconis.de>2018-07-09 01:03:47 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-08-20 20:46:31 +0200
commitc157e6537b4d96987879c4ca770f1e1ddf51fe56 (patch)
tree367d3164db1767406acdc736d12f6c0d30800dad /src/eclipseAgent
parent763b384a169d3303ff82a044ec7be68be92691b1 (diff)
downloadlombok-c157e6537b4d96987879c4ca770f1e1ddf51fe56.tar.gz
lombok-c157e6537b4d96987879c4ca770f1e1ddf51fe56.tar.bz2
lombok-c157e6537b4d96987879c4ca770f1e1ddf51fe56.zip
Share the same class loader
Diffstat (limited to 'src/eclipseAgent')
-rw-r--r--src/eclipseAgent/lombok/launch/PatchFixesHider.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eclipseAgent/lombok/launch/PatchFixesHider.java b/src/eclipseAgent/lombok/launch/PatchFixesHider.java
index 317b06a4..3c70d81d 100644
--- a/src/eclipseAgent/lombok/launch/PatchFixesHider.java
+++ b/src/eclipseAgent/lombok/launch/PatchFixesHider.java
@@ -92,7 +92,7 @@ final class PatchFixesHider {
shadowLoader = Util.class.getClassLoader();
} catch (ClassNotFoundException e) {
// If we get here, it isn't, and we should use the shadowloader.
- shadowLoader = Main.createShadowClassLoader();
+ shadowLoader = Main.getShadowClassLoader();
}
}