Reformat.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@999381 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandNotFoundException.java b/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandNotFoundException.java
index 1bbc9cd..a37f71c 100644
--- a/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandNotFoundException.java
+++ b/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandNotFoundException.java
@@ -20,16 +20,18 @@
 /**
  * Thrown if an unknown command is entered into a shell or passed on the command line
  */
-public class CommandNotFoundException extends IllegalArgumentException {
+public class CommandNotFoundException extends IllegalArgumentException
+{
     private final String command;
 
-
-    public CommandNotFoundException(String command) {
+    public CommandNotFoundException(String command)
+    {
         super("Command not found: " + command);
         this.command = command;
     }
 
-    public String getCommand() {
+    public String getCommand()
+    {
         return command;
     }
-}
+}
\ No newline at end of file