JAVA-19116 Create new core-java-compiler sub module under core-java-modules (#13658)

* JAVA-19116 Create new core-java-compiler sub module under core-java-modules
This commit is contained in:
anuragkumawat
2023-04-12 16:31:55 +05:30
committed by GitHub
parent a910f84ad4
commit 1ffa919db6
12 changed files with 37 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
package com.baeldung.javac;
import java.util.ArrayList;
import java.util.List;
public class Data {
List<String> textList = new ArrayList();
public void addText(String text) {
textList.add(text);
}
public List getTextList() {
return this.textList;
}
}

View File

@@ -0,0 +1,2 @@
-d javac-target -verbose
com/baeldung/javac/Data.java

View File

@@ -0,0 +1,2 @@
-d javac-target
-verbose

View File

@@ -0,0 +1 @@
com/baeldung/javac/Data.java

View File

@@ -0,0 +1,3 @@
-d javac-target
-Xlint:rawtypes,unchecked,static,cast,serial,fallthrough
com/baeldung/javac/Data.java