You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/01/16 00:02:39 UTC

svn commit: r1231788 - /lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/fst/FST.java

Author: mikemccand
Date: Sun Jan 15 23:02:39 2012
New Revision: 1231788

URL: http://svn.apache.org/viewvc?rev=1231788&view=rev
Log:
avoid another synthetic access$NNN method

Modified:
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/fst/FST.java

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/fst/FST.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/fst/FST.java?rev=1231788&r1=1231787&r2=1231788&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/fst/FST.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/fst/FST.java Sun Jan 15 23:02:39 2012
@@ -110,7 +110,8 @@ public class FST<T> {
   T emptyOutput;
   private byte[] emptyOutputBytes;
 
-  private byte[] bytes;
+  // Not private to avoid synthetic access$NNN methods:
+  byte[] bytes;
   int byteUpto = 0;
 
   private int startNode = -1;