This commit is contained in:
Boolean-True 2024-04-24 15:36:14 +02:00
commit efd6353517
12 changed files with 54 additions and 23 deletions

5
.gitignore vendored
View File

@ -4,10 +4,7 @@ target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
.idea
*.iws
*.iml
*.ipr

1
.idea/encodings.xml generated
View File

@ -2,5 +2,6 @@
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
</component>
</project>

1
.idea/misc.xml generated
View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>

2
.idea/vcs.xml generated
View File

@ -2,7 +2,5 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/CompilerUltimate" vcs="Git" />
</component>
</project>

43
.idea/workspace.xml generated
View File

@ -4,9 +4,17 @@
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="534a833a-fe3f-476c-8d82-46f799af4d01" name="Changes" comment="add empty java project">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
<list default="true" id="534a833a-fe3f-476c-8d82-46f799af4d01" name="Changes" comment="added .ide to gitignore">
<change afterPath="$PROJECT_DIR$/src/main/resources/ClassWithAssignment.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/resources/ClassWithMethod.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/resources/ClassWithMethodAndAssignement.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/resources/ClassWithMoreComplexMethod.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/resources/OnlyClass.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/resources/PublicClass.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/test/java/test.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/encodings.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/encodings.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/vcs.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -25,20 +33,20 @@
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"ASKED_ADD_EXTERNAL_FILES": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"git-widget-placeholder": "main",
"kotlin-language-version-configured": "true",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
"node.js.selected.package.tslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
"vue.rearranger.settings.migration": "true"
<component name="PropertiesComponent">{
&quot;keyToString&quot;: {
&quot;ASKED_ADD_EXTERNAL_FILES&quot;: &quot;true&quot;,
&quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
&quot;git-widget-placeholder&quot;: &quot;main&quot;,
&quot;kotlin-language-version-configured&quot;: &quot;true&quot;,
&quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
&quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
&quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
&quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
&quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
&quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
}
}]]></component>
}</component>
<component name="SharedIndexes">
<attachedChunks>
<set>
@ -74,6 +82,7 @@
<component name="VcsManagerConfiguration">
<option name="ADD_EXTERNAL_FILES_SILENTLY" value="true" />
<MESSAGE value="add empty java project" />
<option name="LAST_COMMIT_MESSAGE" value="add empty java project" />
<MESSAGE value="added .ide to gitignore" />
<option name="LAST_COMMIT_MESSAGE" value="added .ide to gitignore" />
</component>
</project>

View File

@ -0,0 +1,3 @@
public class ClassWithAssignment {
int x = 10;
}

View File

@ -0,0 +1,4 @@
public class ClassWithMethod {
public boolean method() {
}
}

View File

@ -0,0 +1,6 @@
public class ClassWithMethodAndAssignement {
char c = 'c';
public boolean method() {
}
}

View File

@ -0,0 +1,6 @@
public class ClassWithMoreComplexMethod {
public boolean moreComplexMethod() {
int i = 0;
return true;
}
}

View File

@ -0,0 +1,2 @@
class OnlyClass {
}

View File

@ -0,0 +1,2 @@
public class PublicClass {
}

2
src/test/java/Test.java Normal file
View File

@ -0,0 +1,2 @@
public class Test {
}