Skip to content

Commit aba6f3a

Browse files
committed
removed null check
1 parent 6fd3c9c commit aba6f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/sf/jsqlparser/expression/AnalyticExpression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public String toString() {
211211
orderBy.toStringOrderByElements(b);
212212

213213
if (windowElement != null) {
214-
if (orderBy != null && orderBy.getOrderByElements()!=null) {
214+
if (orderBy.getOrderByElements()!=null) {
215215
b.append(' ');
216216
}
217217
b.append(windowElement);

0 commit comments

Comments
 (0)