File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
exist-core/src/main/java/org/exist/client Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ private void setupComponents() {
179
179
try {
180
180
client .reloadCollection ();
181
181
} catch (final XMLDBException e1 ) {
182
- //TODO report message
182
+ showErrorMessage ( e1 . getMessage (), e1 );
183
183
}
184
184
});
185
185
toolbar .add (button );
@@ -545,7 +545,7 @@ protected void displayPrompt() {
545
545
doc .insertString (commandStart ++, Messages .getString ("ClientFrame.92" ), defaultAttrs ); //$NON-NLS-1$
546
546
shell .setCaretPosition (commandStart );
547
547
} catch (final BadLocationException e ) {
548
- //TODO show error
548
+ showErrorMessage ( e . getMessage (), e );
549
549
}
550
550
}
551
551
@@ -561,7 +561,7 @@ protected void display(final String message) {
561
561
shell .setCaretPosition (commandStart );
562
562
563
563
} catch (final BadLocationException e ) {
564
- //TODO show error
564
+ showErrorMessage ( e . getMessage (), e );
565
565
}
566
566
}
567
567
Original file line number Diff line number Diff line change 52
52
public class CollectionXConf
53
53
{
54
54
55
- public final static String TYPE_QNAME = "qname" ;
56
- public final static String TYPE_PATH = "path" ;
55
+ public static final String TYPE_QNAME = "qname" ;
56
+ public static final String TYPE_PATH = "path" ;
57
57
58
58
private InteractiveClient client = null ; //the client
59
59
private String path = null ; //path of the collection.xconf file
You can’t perform that action at this time.
0 commit comments