Skip to content

Commit a2b2694

Browse files
use ' instead of " for a char
1 parent 53894c2 commit a2b2694

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqldev/src/main/java/org/utplsql/sqldev/model/PrefixTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static String commonPrefix(final List<String> list) {
7070
if (list.size() == 0) {
7171
return "";
7272
} else if (list.size() == 1) {
73-
final int pos = list.get(0).lastIndexOf(".");
73+
final int pos = list.get(0).lastIndexOf('.');
7474
if (pos > 0) {
7575
return list.get(0).substring(0, pos + 1);
7676
} else {

0 commit comments

Comments
 (0)