diff options
author | unknown <Roels@.tis.local> | 2009-10-18 15:12:41 +0200 |
---|---|---|
committer | unknown <Roels@.tis.local> | 2009-10-18 15:12:41 +0200 |
commit | 1b0d0ff5ad539f34fc27a8a27621b3f8d6d982b7 (patch) | |
tree | 41c3f687db56c92610f0687d3466ab573a02d573 /src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java | |
parent | 4bf8ee3f67f7c076421b6c6a396c85e7bd794749 (diff) | |
download | lombok-1b0d0ff5ad539f34fc27a8a27621b3f8d6d982b7.tar.gz lombok-1b0d0ff5ad539f34fc27a8a27621b3f8d6d982b7.tar.bz2 lombok-1b0d0ff5ad539f34fc27a8a27621b3f8d6d982b7.zip |
Configured warnings and solved some.
Diffstat (limited to 'src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java')
-rw-r--r-- | src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java b/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java index d1759127..68be033d 100644 --- a/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java +++ b/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java @@ -44,11 +44,11 @@ import lombok.patcher.scripts.ScriptBuilder; public class EclipsePatcher { private EclipsePatcher() {} - public static void agentmain(String agentArgs, Instrumentation instrumentation) throws Exception { + public static void agentmain(@SuppressWarnings("unused") String agentArgs, Instrumentation instrumentation) throws Exception { registerPatchScripts(instrumentation, true); } - public static void premain(String agentArgs, Instrumentation instrumentation) throws Exception { + public static void premain(@SuppressWarnings("unused") String agentArgs, Instrumentation instrumentation) throws Exception { registerPatchScripts(instrumentation, false); } |