update:
- ignore meta-inf - Change c style args array in main. (recommended by IDE) - build with java 1.8.x
This commit is contained in:
parent
f64343c59c
commit
f4fa262bd9
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@
|
||||
|
||||
#build output
|
||||
out/
|
||||
META-INF/
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="11" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
@ -1,7 +1,7 @@
|
||||
import java.io.PrintStream;
|
||||
|
||||
public class Program {
|
||||
public static void main(String args[]){
|
||||
public static void main(String[] args){
|
||||
|
||||
PrintStream out = System.out;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user