Skip to content

Commit 535ea91

Browse files
return String instead of CharSequence for getTestIdColumnName()
1 parent e24528a commit 535ea91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/TestOverviewTableModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void updateModel(final boolean showDescription) {
6161
fireTableDataChanged();
6262
}
6363

64-
public CharSequence getTestIdColumnName() {
64+
public String getTestIdColumnName() {
6565
StringBuilder sb = new StringBuilder();
6666
calcCommonPrefix();
6767
if (commonPrefix == null || commonPrefix.isEmpty()) {

0 commit comments

Comments
 (0)