You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2009/02/11 23:40:22 UTC

svn commit: r743542 - /felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java

Author: rickhall
Date: Wed Feb 11 22:40:21 2009
New Revision: 743542

URL: http://svn.apache.org/viewvc?rev=743542&view=rev
Log:
Error in manual application of patch. (FELIX-926)

Modified:
    felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java

Modified: felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java
URL: http://svn.apache.org/viewvc/felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java?rev=743542&r1=743541&r2=743542&view=diff
==============================================================================
--- felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java (original)
+++ felix/trunk/fileinstall/src/main/java/org/apache/felix/fileinstall/DirectoryWatcher.java Wed Feb 11 22:40:21 2009
@@ -543,7 +543,7 @@
      */
     long getLong(Dictionary properties, String property, long dflt)
     {
-        String value = (String) properties.getProperty(property);
+        String value = (String) properties.get(property);
         if (value != null)
         {
             try