You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2015/08/06 22:18:14 UTC

svn commit: r1694566 - /lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java

Author: noble
Date: Thu Aug  6 20:18:13 2015
New Revision: 1694566

URL: http://svn.apache.org/r1694566
Log:
SOLR-7757: Pair is not available in java 7

Modified:
    lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java

Modified: lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java?rev=1694566&r1=1694565&r2=1694566&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java (original)
+++ lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java Thu Aug  6 20:18:13 2015
@@ -437,6 +437,7 @@ public class ZkStateReader implements Cl
     }
   }
 
+  //todo remove when we move to java 8
   static public class Pair<K, V> implements Serializable {
     private K key;