You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2018/09/17 16:54:24 UTC

svn commit: r1841095 - /openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/util/WebBeansConstants.java

Author: struberg
Date: Mon Sep 17 16:54:23 2018
New Revision: 1841095

URL: http://svn.apache.org/viewvc?rev=1841095&view=rev
Log:
OWB-1257 remove superfluous space from 'if-system-property'

txs to Dirk Weil (github: @dirkweil) for catching the problem and shipping a patch!

Modified:
    openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/util/WebBeansConstants.java

Modified: openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/util/WebBeansConstants.java
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/util/WebBeansConstants.java?rev=1841095&r1=1841094&r2=1841095&view=diff
==============================================================================
--- openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/util/WebBeansConstants.java (original)
+++ openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/util/WebBeansConstants.java Mon Sep 17 16:54:23 2018
@@ -51,7 +51,7 @@ public final class WebBeansConstants
     public static final String WEB_BEANS_XML_EXCLUDE = "exclude";
     public static final String WEB_BEANS_XML_IF_CLASS_NOT_AVAILABLE = "if-class-not-available";
     public static final String WEB_BEANS_XML_IF_CLASS_AVAILABLE = "if-class-available";
-    public static final String WEB_BEANS_XML_IF_SYSTEM_PROPERTY = "if-system-property ";
+    public static final String WEB_BEANS_XML_IF_SYSTEM_PROPERTY = "if-system-property";
 
     /**JNDI name of the {@link javax.enterprise.inject.spi.BeanManager} instance*/
     public static final String WEB_BEANS_MANAGER_JNDI_NAME = "java:comp/BeanManager";