You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2012/03/22 21:25:03 UTC

svn commit: r1304030 - /lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/SystemPropertiesRestoreRule.java

Author: dweiss
Date: Thu Mar 22 20:25:02 2012
New Revision: 1304030

URL: http://svn.apache.org/viewvc?rev=1304030&view=rev
Log:
LUCENE-3847: eh, no comments.

Modified:
    lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/SystemPropertiesRestoreRule.java

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/SystemPropertiesRestoreRule.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/SystemPropertiesRestoreRule.java?rev=1304030&r1=1304029&r2=1304030&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/SystemPropertiesRestoreRule.java (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/SystemPropertiesRestoreRule.java Thu Mar 22 20:25:02 2012
@@ -43,7 +43,7 @@ public class SystemPropertiesRestoreRule
    * @param ignoredProperties Properties that will be ignored (and will not be restored).
    */
   public SystemPropertiesRestoreRule(Set<String> ignoredProperties) {
-    this.ignoredProperties = new HashSet<String>(this.ignoredProperties);
+    this.ignoredProperties = new HashSet<String>(ignoredProperties);
   }
 
   /**