From 45967c522eca156bf0eeae14ebd9f466d23bd470 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 7 Feb 2018 00:49:23 +0100 Subject: [trivial] updated comment and slight tweak to website text. --- website/templates/setup/javac.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'website/templates') diff --git a/website/templates/setup/javac.html b/website/templates/setup/javac.html index f90cb727..48b0ebcf 100644 --- a/website/templates/setup/javac.html +++ b/website/templates/setup/javac.html @@ -11,11 +11,8 @@

Support for JDK9, if you haven't modularized your own projects yet (no module-info.java yet), is included in lombok starting with version 1.16.20. Just use lombok as normal: javac -cp lombok.jar ...

- Support for JDK9 if you did modularize your own projects (you've written a module-info.java file) is available in the edge release. To use it, you can choose:

- Both are equally effective. Note that you will have to add lombok to your module-info.java file:
+			Support for JDK9 if you did modularize your own projects (you've written a module-info.java file) is available in the edge release. To use it: javac -cp lombok.jar -p lombok.jar ...
+ Note that you will have to add lombok to your module-info.java file:
 module myapp {
 	requires static lombok;
 }
-- cgit