javac2 & @NotNull
Hi,
How do I use the javac2 jar to add run-time checking of
@Nullable/@NotNull from an ant build script? I've looked for
documentation but can only find this
http://www.jetbrains.com/idea/documentation/howto.html which doesn't
mention ant at all.
Thanks,
R
请先登录再写评论。
Hello Robert,
Simply add the JAR to classpath and replace the task with ]]>.
--
Dmitry Jemerov
Software Developer
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Hello Robert,
just add the following fragment to your Ant-file, set the property "idea.home"
to point to your IDEA-installation and replace all usages of the "javac"-task
with "javac2":
]]>
HTH,
Sascha
Thanks Sascha, that works great.
R