Skip to content

Commit d694970

Browse files
committed
Add @NonNull annotation
Signed-off-by: BoykoAlex <alex.boyko@broadcom.com>
1 parent ea478c0 commit d694970

File tree

1 file changed

+3
-1
lines changed
  • headless-services/commons/commons-java/src/main/java/org/springframework/ide/vscode/commons/java

1 file changed

+3
-1
lines changed

headless-services/commons/commons-java/src/main/java/org/springframework/ide/vscode/commons/java/IJavaProject.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
import java.net.URI;
1414
import java.util.Map;
1515

16+
import org.jspecify.annotations.NonNull;
17+
1618
public interface IJavaProject {
1719

1820
final static String PROJECT_CACHE_FOLDER = ".sts4-cache";
@@ -40,6 +42,6 @@ default String getElementName() {
4042
*
4143
* @return a non-null map of JavaCore option keys to values
4244
*/
43-
Map<String, String> getJavaCoreOptions();
45+
@NonNull Map<String, String> getJavaCoreOptions();
4446

4547
}

0 commit comments

Comments
 (0)