Added constant, fixed minor formatting issue.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@819869 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/shell/src/main/java/org/apache/felix/shell/impl/SystemPropertiesCommandImpl.java b/shell/src/main/java/org/apache/felix/shell/impl/SystemPropertiesCommandImpl.java
index ca273bc..2f1705f 100644
--- a/shell/src/main/java/org/apache/felix/shell/impl/SystemPropertiesCommandImpl.java
+++ b/shell/src/main/java/org/apache/felix/shell/impl/SystemPropertiesCommandImpl.java
@@ -34,6 +34,8 @@
  */
 public class SystemPropertiesCommandImpl implements Command
 {
+    private static final String REMOVE_PROP_SWITCH = "-r";
+
     public void execute(String line, PrintStream out, PrintStream err)
     {
         StringTokenizer st = new StringTokenizer(line);
@@ -54,8 +56,10 @@
             }
             else if (tokens == 3)
             {
-                if ("-r".equals(secondArgument))
+                if (REMOVE_PROP_SWITCH.equals(secondArgument))
+                {
                     removeProperty(st.nextToken());
+                }
                 else
                 {
                     String value = st.nextToken();