diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-30 03:45:27 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-30 03:46:42 +0100 |
commit | 8ed49ce0b5c0dbddb66a5519086a033889e6e2e2 (patch) | |
tree | 2f1914d429348658650cb65de6925667af03ee96 /website | |
parent | b6e54e73e11804c2d242a7772ad12c160349896a (diff) | |
download | lombok-8ed49ce0b5c0dbddb66a5519086a033889e6e2e2.tar.gz lombok-8ed49ce0b5c0dbddb66a5519086a033889e6e2e2.tar.bz2 lombok-8ed49ce0b5c0dbddb66a5519086a033889e6e2e2.zip |
[i775] We broke the ant task with shadowloader; fixed again.
Diffstat (limited to 'website')
-rw-r--r-- | website/features/delombok.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/features/delombok.html b/website/features/delombok.html index 30f21c04..dbd7b51f 100644 --- a/website/features/delombok.html +++ b/website/features/delombok.html @@ -41,7 +41,7 @@ <code>lombok.jar</code> includes an ant task which can apply delombok for you. For example, to create javadoc for your project, your <code>build.xml</code> file would look something like: <div class="snippet"><pre><target name="javadoc"> - <taskdef classname="lombok.delombok.ant.DelombokTask" classpath="lib/lombok.jar" name="delombok" /> + <taskdef classname="lombok.delombok.ant.Tasks$Delombok" classpath="lib/lombok.jar" name="delombok" /> <mkdir dir="build/src-delomboked" /> <strong><delombok verbose="true" encoding="UTF-8" to="build/src-delomboked" from="src"></strong> <strong><format value="suppressWarnings:skip" /></strong> |