Reverted previous change since it appears to not be a bug. (FELIX-1155)


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@775136 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundlerepository/src/main/java/org/apache/felix/bundlerepository/PropertyImpl.java b/bundlerepository/src/main/java/org/apache/felix/bundlerepository/PropertyImpl.java
index 8d43c4e..27020ea 100644
--- a/bundlerepository/src/main/java/org/apache/felix/bundlerepository/PropertyImpl.java
+++ b/bundlerepository/src/main/java/org/apache/felix/bundlerepository/PropertyImpl.java
@@ -80,12 +80,7 @@
 
     private Object convertType(String value)
     {
-        if ((m_type != null) && m_type.equalsIgnoreCase(Resource.VERSION)
-            && (value.indexOf(',') > 0))
-        {
-            return VersionRange.parse(value);
-        }
-        else if ((m_type != null) && m_type.equalsIgnoreCase(Resource.VERSION))
+        if ((m_type != null) && m_type.equalsIgnoreCase(Resource.VERSION))
         {
             return new Version(value);
         }