-
-
Notifications
You must be signed in to change notification settings - Fork 75
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
Hurricup/bugfixes 2 #2922
Hurricup/bugfixes 2 #2922
Conversation
Those fields are implicitly written by gson
Also fixed bounds
Qodana for JVM3489 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked Detected 11 dependenciesThird-party software listThis page lists the third-party software dependencies used in perl5
Contact Qodana teamContact us at [email protected]
|
@@ -111,7 +112,7 @@ | |||
} | |||
|
|||
public static void reindexProjectFile(Project project, VirtualFile virtualFile) { | |||
if (VfsUtil.isAncestor(project.getBaseDir(), virtualFile, false)) { | |||
if (VfsUtilCore.isAncestor(project.getBaseDir(), virtualFile, false)) { |
Check warning
Code scanning / QDJVM
Deprecated API usage Warning
PerlCallObjectValue value = (PerlCallObjectValue)o; | ||
|
||
return mySuperContext != null ? mySuperContext.equals(value.mySuperContext) : value.mySuperContext == null; | ||
return mySuperContext != null ? mySuperContext.equals(callObjectValue.mySuperContext) : callObjectValue.mySuperContext == null; |
Check notice
Code scanning / QDJVM
'equals()' expression replaceable by 'Objects.equals()' expression Note
PerlValueResolver resolver = (PerlValueResolver)o; | ||
|
||
if (!myResolveScope.equals(resolver.myResolveScope)) { | ||
if (!myResolveScope.equals(((PerlValueResolver)o).myResolveScope)) { |
Check warning
Code scanning / QDJVM
Pattern variable can be used Warning
return false; | ||
} | ||
return Objects.equals(myContextFile, resolver.myContextFile); | ||
return Objects.equals(myContextFile, ((PerlValueResolver)o).myContextFile); |
Check warning
Code scanning / QDJVM
Pattern variable can be used Warning
Quality Gate failedFailed conditions |
Code style and modernization