Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-04-17 08:59:47 +0000
committerAlexander Kurtakov2019-04-17 09:37:04 +0000
commit13e262c90c87ff0d0261ab9706b151e915cb0b11 (patch)
treefbfd9a3bbf8504048a0cd5c96c133c35a92b32fc /bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java
parent24d8de28c7f995ee0aa29f50d07a8b38cb5cf1c6 (diff)
downloadeclipse.platform.team-13e262c90c87ff0d0261ab9706b151e915cb0b11.tar.gz
eclipse.platform.team-13e262c90c87ff0d0261ab9706b151e915cb0b11.tar.xz
eclipse.platform.team-13e262c90c87ff0d0261ab9706b151e915cb0b11.zip
Remove useless non-javadoc/@see comments. (take 3)
Put @Override instead where needed. Change-Id: I7ccbb74b2ab634fe2440728fbe79712e7cba765d Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java12
1 files changed, 2 insertions, 10 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java
index 8c2bb0f11..7915698a3 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/dialogs/DetailsDialog.java
@@ -87,8 +87,7 @@ abstract public class DetailsDialog extends TrayDialog {
setShellStyle(SWT.DIALOG_TRIM | SWT.RESIZE | SWT.APPLICATION_MODAL);
}
- /* (non-Javadoc)
- * Method declared on Dialog.
+ /*
* Handles the pressing of the Ok or Details button in this dialog.
* If the Ok button was pressed then close this dialog. If the Details
* button was pressed then toggle the displaying of the error details area.
@@ -104,9 +103,6 @@ abstract public class DetailsDialog extends TrayDialog {
}
}
- /* (non-Javadoc)
- * Method declared in Window.
- */
@Override
protected void configureShell(Shell shell) {
super.configureShell(shell);
@@ -117,9 +113,6 @@ abstract public class DetailsDialog extends TrayDialog {
}
}
- /* (non-Javadoc)
- * Method declared on Dialog.
- */
@Override
protected void createButtonsForButtonBar(Composite parent) {
// create OK and Details buttons
@@ -143,8 +136,7 @@ abstract public class DetailsDialog extends TrayDialog {
return IDialogConstants.HIDE_DETAILS_LABEL;
}
- /* (non-Javadoc)
- * Method declared on Dialog.
+ /*
* Creates and returns the contents of the upper part
* of the dialog (above the button bar).
*/

Back to the top