Skip to content

Commit fce5b99

Browse files
committed
1 parent 98b66be commit fce5b99

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/net/sf/jsqlparser/schema/Sequence.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public Sequence withDatabase(Database database) {
6060
setDatabase(database);
6161
return this;
6262
}
63-
63+
6464
public String getSchemaName() {
6565
return getIndex(SCHEMA_IDX);
6666
}
@@ -176,6 +176,7 @@ public enum ParameterType {
176176
* Represents a parameter when declaring a sequence
177177
*/
178178
public static class Parameter {
179+
179180
private final ParameterType option;
180181
private Long value;
181182

@@ -198,7 +199,7 @@ public String formatParameter() {
198199
case START_WITH:
199200
return prefix("START WITH");
200201
case RESTART_WITH:
201-
if(value != null){
202+
if (value != null) {
202203
return prefix("RESTART WITH");
203204
} else {
204205
return "RESTART";

0 commit comments

Comments
 (0)