Suppressed warnings where the thing warned about is intentional
[Mograsim.git] / SampleERCP / src / sampleercp / handlers / AboutHandler.java
index 002d74e..f052b90 100644 (file)
@@ -4,9 +4,11 @@ import org.eclipse.e4.core.di.annotations.Execute;
 import org.eclipse.jface.dialogs.MessageDialog;
 import org.eclipse.swt.widgets.Shell;
 
-public class AboutHandler {
+public class AboutHandler
+{
        @Execute
-       public void execute(Shell shell) {
+       public void execute(Shell shell)
+       {
                MessageDialog.openInformation(shell, "About", "Sample RCP4");
        }
 }