aboutsummaryrefslogtreecommitdiff
path: root/experimental/src
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-07-12 23:48:02 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-07-12 23:48:02 +0200
commite693672cd44ab0e648643f4b5c24b1c177ab6c84 (patch)
treef07383881d17b775a9205f175c317bbb4d5dbaa3 /experimental/src
parenta118bc79249ba9184ada2315dacf48fd19e444a5 (diff)
downloadlombok-e693672cd44ab0e648643f4b5c24b1c177ab6c84.tar.gz
lombok-e693672cd44ab0e648643f4b5c24b1c177ab6c84.tar.bz2
lombok-e693672cd44ab0e648643f4b5c24b1c177ab6c84.zip
Changed build system to ivy.
Diffstat (limited to 'experimental/src')
-rw-r--r--experimental/src/lombok/javac/disableCheckedExceptions/DisableCheckedExceptionsAgent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/experimental/src/lombok/javac/disableCheckedExceptions/DisableCheckedExceptionsAgent.java b/experimental/src/lombok/javac/disableCheckedExceptions/DisableCheckedExceptionsAgent.java
index c3e02431..2ec5614d 100644
--- a/experimental/src/lombok/javac/disableCheckedExceptions/DisableCheckedExceptionsAgent.java
+++ b/experimental/src/lombok/javac/disableCheckedExceptions/DisableCheckedExceptionsAgent.java
@@ -74,11 +74,11 @@ public class DisableCheckedExceptionsAgent extends AbstractProcessor {
return false;
}
- public static void agentmain(@SuppressWarnings("unused") String agentArgs, Instrumentation instrumentation) throws Exception {
+ public static void agentmain(String agentArgs, Instrumentation instrumentation) throws Exception {
registerPatchScripts(instrumentation, true);
}
- public static void premain(@SuppressWarnings("unused") String agentArgs, Instrumentation instrumentation) throws Exception {
+ public static void premain(String agentArgs, Instrumentation instrumentation) throws Exception {
registerPatchScripts(instrumentation, false);
}