|
19 | 19 | * <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
20 | 20 | * #L%
|
21 | 21 | */
|
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 |
| - */ |
40 | 22 |
|
41 | 23 | package net.sf.jsqlparser.expression;
|
42 | 24 |
|
@@ -68,21 +50,21 @@ public void setColumn(Column column) {
|
68 | 50 | this.column = column;
|
69 | 51 | }
|
70 | 52 |
|
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 | +// } |
86 | 68 |
|
87 | 69 | public void addIdent(String ident, String operator) {
|
88 | 70 | idents.add(ident);
|
|
0 commit comments