-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable NonNullByDefault for lspe4.plugin #1009
Changes from all commits
8a05fef
9ccd944
e11bba4
0465de4
f08a059
d41e949
fbb785e
524a670
71f7775
e40214b
7b37c59
90a6880
12c50c8
7c1b9d1
62be105
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
target/ | ||
bin/ | ||
.settings/de.loskutov.anyedit.AnyEditTools.prefs | ||
# Local work folder that is not checked in | ||
_LOCAL/ | ||
|
||
# Eclipse | ||
/bin/ | ||
/*/bin/ | ||
**/.settings/* | ||
!**/.settings/org.eclipse.core.resoures.prefs | ||
!**/.settings/org.eclipse.jdt.core.prefs | ||
!**/.settings/org.eclipse.pde.core.prefs | ||
**/.pydevproject | ||
|
||
# Maven | ||
/target/ | ||
/*/target/ | ||
.polyglot.* | ||
.META-INF_MANIFEST.MF | ||
dash-licenses/ | ||
*.log | ||
|
||
# OSX | ||
.DS_Store | ||
|
||
# Vim | ||
*.swo | ||
*.swp |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"> | ||
<attributes> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="src" output="target/classes" path="src"> | ||
<attributes> | ||
<attribute name="optional" value="true"/> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | ||
<attributes> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="output" path="target/classes"/> | ||
</classpath> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
/target/ | ||
/bin/ | ||
/resources/highlight.min.js/ | ||
/.settings/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled | ||
org.eclipse.jdt.core.builder.annotationPath.allLocations=enabled | ||
org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=enabled | ||
org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore | ||
org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull | ||
org.eclipse.jdt.core.compiler.annotation.nonnull.secondary=org.eclipse.lsp4j.jsonrpc.validation.NonNull | ||
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault | ||
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary= | ||
org.eclipse.jdt.core.compiler.annotation.notowning=org.eclipse.jdt.annotation.NotOwning | ||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable | ||
org.eclipse.jdt.core.compiler.annotation.nullable.secondary= | ||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=enabled | ||
org.eclipse.jdt.core.compiler.annotation.owning=org.eclipse.jdt.annotation.Owning | ||
org.eclipse.jdt.core.compiler.annotation.resourceanalysis=disabled | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that is the default setting. it is set by eclipse 2024-06 automatically. |
||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | ||
|
@@ -17,6 +21,7 @@ org.eclipse.jdt.core.compiler.debug.lineNumber=generate | |
org.eclipse.jdt.core.compiler.debug.localVariable=generate | ||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate | ||
org.eclipse.jdt.core.compiler.problem.APILeak=warning | ||
org.eclipse.jdt.core.compiler.problem.annotatedTypeArgumentToUnannotated=info | ||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore | ||
|
@@ -37,10 +42,12 @@ org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning | |
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error | ||
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning | ||
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled | ||
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=enabled | ||
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning | ||
org.eclipse.jdt.core.compiler.problem.incompatibleOwningContract=warning | ||
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning | ||
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore | ||
org.eclipse.jdt.core.compiler.problem.insufficientResourceAnalysis=warning | ||
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore | ||
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning | ||
org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore | ||
|
@@ -59,7 +66,7 @@ org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=wa | |
org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error | ||
org.eclipse.jdt.core.compiler.problem.nullReference=error | ||
org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error | ||
org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning | ||
org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=info | ||
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning | ||
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore | ||
org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning | ||
|
@@ -68,7 +75,7 @@ org.eclipse.jdt.core.compiler.problem.potentialNullReference=error | |
org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore | ||
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning | ||
org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning | ||
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore | ||
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=warning | ||
org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore | ||
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore | ||
org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore | ||
|
@@ -78,7 +85,8 @@ org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled | |
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning | ||
org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled | ||
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled | ||
org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled | ||
org.eclipse.jdt.core.compiler.problem.suppressWarningsNotFullyAnalysed=info | ||
org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=enabled | ||
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore | ||
org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning | ||
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we undo the changes in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could but evertime I checkout or switch a branch with Eclipse, the entries get modified/reordered, so I guessed that is how new Eclipse or m2e versions like it.