Skip to content

Commit 973648c

Browse files
committed
Fixed comments
1 parent 964513d commit 973648c

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/main/java/net/sf/jsqlparser/statement/lock/LockMode.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/*--- (C) 1999-2019 Techniker Krankenkasse ---*/
2-
31
package net.sf.jsqlparser.statement.lock;
42

53
/**
@@ -10,7 +8,7 @@ public enum LockMode {
108
Share("SHARE"),
119
Exclusive("EXCLUSIVE"),
1210

13-
// These are only Oracle specific, as far as I know
11+
// These are Oracle specific, as far as I know
1412
RowShare("ROW SHARE"),
1513
RowExclusive("ROW EXCLUSIVE"),
1614
ShareUpdate("SHARE UPDATE"),
@@ -26,6 +24,4 @@ public String getValue() {
2624
return value;
2725
}
2826

29-
}
30-
31-
/*--- Formatiert nach TK Code Konventionen vom 05.03.2002 ---*/
27+
}

src/main/java/net/sf/jsqlparser/statement/lock/LockStatement.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/*--- (C) 1999-2019 Techniker Krankenkasse ---*/
2-
31
package net.sf.jsqlparser.statement.lock;
42

53
import net.sf.jsqlparser.schema.Table;
@@ -99,5 +97,3 @@ public long getWaitTimeout() {
9997
return waitSeconds;
10098
}
10199
}
102-
103-
/*--- Formatiert nach TK Code Konventionen vom 05.03.2002 ---*/

0 commit comments

Comments
 (0)