You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2008/08/12 17:47:18 UTC

svn commit: r685200 - /felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/PropertyHandler.java

Author: cziegeler
Date: Tue Aug 12 08:47:16 2008
New Revision: 685200

URL: http://svn.apache.org/viewvc?rev=685200&view=rev
Log:
FELIX-680 : Allow variables for reference names and lookup reference interface names in local imports.

Modified:
    felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/PropertyHandler.java

Modified: felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/PropertyHandler.java
URL: http://svn.apache.org/viewvc/felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/PropertyHandler.java?rev=685200&r1=685199&r2=685200&view=diff
==============================================================================
--- felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/PropertyHandler.java (original)
+++ felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/PropertyHandler.java Tue Aug 12 08:47:16 2008
@@ -39,7 +39,7 @@
      * This is a map using the property name as the key and
      * {@link PropertyDescription} as values.
      */
-    final private Map properties = new HashMap();
+    final private Map properties = new LinkedHashMap();
 
     /** The component. */
     final private Component component;