Skip to content

Commit 2bfc9ab

Browse files
author
Peter Borissow
committed
Updated header and removed unused methods.
1 parent 7c74085 commit 2bfc9ab

File tree

1 file changed

+15
-33
lines changed

1 file changed

+15
-33
lines changed

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

Lines changed: 15 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,6 @@
1919
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
2020
* #L%
2121
*/
22-
/*
23-
* Copyright (C) 2014 JSQLParser.
24-
*
25-
* This library is free software; you can redistribute it and/or
26-
* modify it under the terms of the GNU Lesser General Public
27-
* License as published by the Free Software Foundation; either
28-
* version 2.1 of the License, or (at your option) any later version.
29-
*
30-
* This library is distributed in the hope that it will be useful,
31-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
32-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33-
* Lesser General Public License for more details.
34-
*
35-
* You should have received a copy of the GNU Lesser General Public
36-
* License along with this library; if not, write to the Free Software
37-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
38-
* MA 02110-1301 USA
39-
*/
4022

4123
package net.sf.jsqlparser.expression;
4224

@@ -68,21 +50,21 @@ public void setColumn(Column column) {
6850
this.column = column;
6951
}
7052

71-
public List<String> getIdents() {
72-
return idents;
73-
}
74-
75-
public void setIdents(List<String> idents) {
76-
this.idents = idents;
77-
operators = new ArrayList<String>();
78-
for (String ident : idents) {
79-
operators.add("->");
80-
}
81-
}
82-
83-
public void addIdent(String ident) {
84-
addIdent(ident, "->");
85-
}
53+
// public List<String> getIdents() {
54+
// return idents;
55+
// }
56+
//
57+
// public void setIdents(List<String> idents) {
58+
// this.idents = idents;
59+
// operators = new ArrayList<String>();
60+
// for (String ident : idents) {
61+
// operators.add("->");
62+
// }
63+
// }
64+
//
65+
// public void addIdent(String ident) {
66+
// addIdent(ident, "->");
67+
// }
8668

8769
public void addIdent(String ident, String operator) {
8870
idents.add(ident);

0 commit comments

Comments
 (0)