Skip to content

Commit

Permalink
Changed Tabs to 4 Spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
rostup authored and lukasj committed Feb 22, 2022
1 parent c069f46 commit 3ee42ca
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1116,12 +1116,12 @@ public String getLogString(Accessor accessor) {
}
}

private boolean isIndexBased(List<String> procedureArgs, AbstractSession session) {
boolean hasNoArgs = procedureArgs.size() == 0 || procedureArgs.get(0) == null;
boolean isNamingIntoIndexed = false;
if (session != null && session.getProject() != null) {
isNamingIntoIndexed = session.getProject().namingIntoIndexed();
}
return hasNoArgs || isNamingIntoIndexed;
private boolean isIndexBased(List<String> procedureArgs, AbstractSession session) {
boolean hasNoArgs = procedureArgs.size() == 0 || procedureArgs.get(0) == null;
boolean isNamingIntoIndexed = false;
if (session != null && session.getProject() != null) {
isNamingIntoIndexed = session.getProject().namingIntoIndexed();
}
return hasNoArgs || isNamingIntoIndexed;
}
}

0 comments on commit 3ee42ca

Please sign in to comment.