File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
bundles/org.eclipse.ui.views.log/src/org/eclipse/ui/internal/views/log Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ public void dispose() {
722722 */
723723 void handleImport () {
724724 FileDialog dialog = new FileDialog (getViewSite ().getShell ());
725- dialog .setFilterExtensions (new String [] { "*.log" } ); //$NON-NLS-1$
725+ dialog .setFilterExtensions ("*.log" ); //$NON-NLS-1$
726726 if (fDirectory != null ) {
727727 dialog .setFilterPath (fDirectory );
728728 }
@@ -776,7 +776,7 @@ protected void setLogFile(File path) {
776776
777777 private void handleExport (boolean exportWholeLog ) {
778778 FileDialog dialog = new FileDialog (getViewSite ().getShell (), SWT .SAVE );
779- dialog .setFilterExtensions (new String [] { "*.log" } ); //$NON-NLS-1$
779+ dialog .setFilterExtensions ("*.log" ); //$NON-NLS-1$
780780 if (fDirectory != null ) {
781781 dialog .setFilterPath (fDirectory );
782782 }
You can’t perform that action at this time.
0 commit comments