You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ This repository provides formatter settings for the [coding style rules](https:/
6
6
7
7
Settings are primarily provided for
8
8
9
-
-[Oracle SQLcl, Version 22.2.1](https://www.oracle.com/tools/downloads/sqlcl-downloads.html)
10
-
-[Oracle SQL Developer, Version 22.2.1](https://www.oracle.com/tools/downloads/sqldev-downloads.html)
9
+
-[Oracle SQLcl, Version 22.3.0](https://www.oracle.com/tools/downloads/sqlcl-downloads.html)
10
+
-[Oracle SQL Developer, Version 22.2.1](https://www.oracle.com/tools/downloads/sqldev-downloads.html) (requires `dbtools-common.jar` from SQLcl 22.3.0)
11
11
12
12
These settings have been defined and tested with the product versions mentioned above. They might not work in other versions.
Copy file name to clipboardExpand all lines: standalone/src/test/java/com/trivadis/plsql/formatter/settings/tests/grammar/plsql/While_loop_statement.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -57,20 +57,20 @@ public void example_14_47_tokenized() throws IOException {
57
57
varactual = getFormatter().format(input);
58
58
varexpected = """
59
59
declare
60
-
done boolean := FALSE;
60
+
done boolean := false;
61
61
begin
62
62
while done
63
63
loop
64
64
DBMS_OUTPUT.PUT_LINE('This line does not print.');
0 commit comments