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/ !**/src/test/**/target/
### IntelliJ IDEA ### ### IntelliJ IDEA ###
.idea/modules.xml .idea
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws *.iws
*.iml *.iml
*.ipr *.ipr

1
.idea/encodings.xml generated
View File

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

1
.idea/misc.xml generated
View File

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

2
.idea/vcs.xml generated
View File

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

43
.idea/workspace.xml generated
View File

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