-
Notifications
You must be signed in to change notification settings - Fork 123
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
Stopword fix PR #1008
Stopword fix PR #1008
Conversation
* fixing verifyblocking * working changes * fixing location name in spark * junits --------- Co-authored-by: sania-16 <[email protected]> Co-authored-by: Sania Goyal <[email protected]>
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.
please clean pr as per comments. it shold not have verifyblocking changes either.
common/client/src/main/java/zingg/common/client/util/DSUtil.java
Outdated
Show resolved
Hide resolved
common/client/src/main/java/zingg/common/client/util/DSUtil.java
Outdated
Show resolved
Hide resolved
common/core/src/main/java/zingg/common/core/executor/ZinggBase.java
Outdated
Show resolved
Hide resolved
common/core/src/main/java/zingg/common/core/executor/blockingverifier/VerifyBlocking.java
Show resolved
Hide resolved
for(FieldDefinition fd: list){ | ||
fieldNamesList.add(fd.getName()); | ||
} | ||
String fieldNames = fieldNamesList.stream() |
Check warning
Code scanning / PMD
Consider simply returning the value vs storing it in local variable 'recordDF' Warning
if(!(f.getStopWords() == null || f.getStopWords() == "")){ | ||
return true; | ||
} | ||
else | ||
return false; |
Check warning
Code scanning / PMD
This if statement can be replaced by `return {condition};` Warning
return true; | ||
} | ||
else | ||
return false; |
Check warning
Code scanning / PMD
This statement should have braces Warning
No description provided.