Skip to content

Commit e2e31c8

Browse files
committed
Fix build errors
1 parent 97cf62e commit e2e31c8

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.vscode/settings.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
11
{
2-
"java.configuration.updateBuildConfiguration": "automatic"
2+
"editor.formatOnSave": true,
3+
"java.configuration.updateBuildConfiguration": "automatic",
4+
"java.compile.nullAnalysis.mode": "automatic",
5+
"editor.codeActionsOnSave": {
6+
"source.organizeImports": "explicit",
7+
"source.generate.finalModifiers": "explicit",
8+
"source.fixAll": "explicit"
9+
},
10+
"java.codeGeneration.useBlocks": true,
11+
"java.saveActions.organizeImports": true,
12+
"java.sources.organizeImports.starThreshold": 3,
13+
"java.sources.organizeImports.staticStarThreshold": 3,
14+
"java.test.config": {
15+
"vmArgs": [
16+
"-Djava.util.logging.config.file=src/test/resources/logging.properties"
17+
]
18+
},
319
}

src/main/java/org/example/Library.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33
*/
44
package org.example;
55

6+
/**
7+
* Dummy code
8+
*/
69
public class Library {
10+
/**
11+
* Dummy method
12+
*
13+
* @return value
14+
*/
715
public boolean someLibraryMethod() {
816
return true;
917
}

0 commit comments

Comments
 (0)