You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2013/07/26 03:30:42 UTC

[lucy-commits] [2/6] git commit: refs/heads/move-dumpable - Strip "dumpable" attribute.

Strip "dumpable" attribute.

The "dumpable" attribute was used to help determine which classes needed
autogenerated Dump/Load.  It is now obsolete, so zap it.


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/ee8fc5c3
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/ee8fc5c3
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/ee8fc5c3

Branch: refs/heads/move-dumpable
Commit: ee8fc5c31e6f06a8a0dea685594705d927f39286
Parents: 4b8f8f8
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Thu Jul 25 17:03:05 2013 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Thu Jul 25 18:27:24 2013 -0700

----------------------------------------------------------------------
 core/Lucy/Analysis/Analyzer.cfh           |  3 +--
 core/Lucy/Analysis/CaseFolder.cfh         |  3 +--
 core/Lucy/Analysis/EasyAnalyzer.cfh       |  3 +--
 core/Lucy/Analysis/Normalizer.cfh         |  3 +--
 core/Lucy/Analysis/PolyAnalyzer.cfh       |  3 +--
 core/Lucy/Analysis/SnowballStemmer.cfh    |  2 +-
 core/Lucy/Analysis/SnowballStopFilter.cfh |  2 +-
 core/Lucy/Document/Doc.cfh                |  3 +--
 core/Lucy/Index/Similarity.cfh            |  3 +--
 core/Lucy/Index/Snapshot.cfh              |  2 +-
 core/Lucy/Plan/BlobType.cfh               |  3 +--
 core/Lucy/Plan/FullTextType.cfh           |  3 +--
 core/Lucy/Plan/NumericType.cfh            | 21 +++++++--------------
 core/Lucy/Plan/StringType.cfh             |  3 +--
 core/Lucy/Search/ANDQuery.cfh             |  3 +--
 core/Lucy/Search/LeafQuery.cfh            |  3 +--
 core/Lucy/Search/MatchAllQuery.cfh        |  3 +--
 core/Lucy/Search/NOTQuery.cfh             |  3 +--
 core/Lucy/Search/NoMatchQuery.cfh         |  3 +--
 core/Lucy/Search/ORQuery.cfh              |  3 +--
 core/Lucy/Search/PhraseQuery.cfh          |  3 +--
 core/Lucy/Search/PolyQuery.cfh            |  3 +--
 core/Lucy/Search/Query.cfh                |  2 +-
 core/Lucy/Search/RangeQuery.cfh           |  3 +--
 core/Lucy/Search/TermQuery.cfh            |  3 +--
 core/LucyX/Search/ProximityQuery.cfh      |  3 +--
 26 files changed, 32 insertions(+), 60 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/Analyzer.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/Analyzer.cfh b/core/Lucy/Analysis/Analyzer.cfh
index f435aa8..7d01ddc 100644
--- a/core/Lucy/Analysis/Analyzer.cfh
+++ b/core/Lucy/Analysis/Analyzer.cfh
@@ -24,8 +24,7 @@ parcel Lucy;
  * might perform case folding to facilitate case-insensitive search
  * (L<Normalizer|Lucy::Analysis::Normalizer>).
  */
-public abstract class Lucy::Analysis::Analyzer
-    inherits Clownfish::Obj : dumpable {
+public abstract class Lucy::Analysis::Analyzer inherits Clownfish::Obj {
 
     public inert Analyzer*
     init(Analyzer *self);

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/CaseFolder.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/CaseFolder.cfh b/core/Lucy/Analysis/CaseFolder.cfh
index 137905d..a173e9d 100644
--- a/core/Lucy/Analysis/CaseFolder.cfh
+++ b/core/Lucy/Analysis/CaseFolder.cfh
@@ -25,8 +25,7 @@ parcel Lucy;
  * searches will be case-insensitive.
  */
 
-public class Lucy::Analysis::CaseFolder
-    inherits Lucy::Analysis::Analyzer : dumpable {
+public class Lucy::Analysis::CaseFolder inherits Lucy::Analysis::Analyzer {
 
     Normalizer *normalizer;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/EasyAnalyzer.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/EasyAnalyzer.cfh b/core/Lucy/Analysis/EasyAnalyzer.cfh
index 495ec0d..e0c7498 100644
--- a/core/Lucy/Analysis/EasyAnalyzer.cfh
+++ b/core/Lucy/Analysis/EasyAnalyzer.cfh
@@ -41,8 +41,7 @@ parcel Lucy;
  *     sv => Swedish,
  *     tr => Turkish,
  */
-public class Lucy::Analysis::EasyAnalyzer
-    inherits Lucy::Analysis::Analyzer : dumpable {
+public class Lucy::Analysis::EasyAnalyzer inherits Lucy::Analysis::Analyzer {
 
     CharBuf *language;
     StandardTokenizer *tokenizer;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/Normalizer.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/Normalizer.cfh b/core/Lucy/Analysis/Normalizer.cfh
index da1882b..c65d5f1 100644
--- a/core/Lucy/Analysis/Normalizer.cfh
+++ b/core/Lucy/Analysis/Normalizer.cfh
@@ -27,8 +27,7 @@ parcel Lucy;
  * because it might add or remove characters.
  */
 
-public class Lucy::Analysis::Normalizer
-    inherits Lucy::Analysis::Analyzer : dumpable {
+public class Lucy::Analysis::Normalizer inherits Lucy::Analysis::Analyzer {
 
     int options;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/PolyAnalyzer.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/PolyAnalyzer.cfh b/core/Lucy/Analysis/PolyAnalyzer.cfh
index 1edffc0..2bafa55 100644
--- a/core/Lucy/Analysis/PolyAnalyzer.cfh
+++ b/core/Lucy/Analysis/PolyAnalyzer.cfh
@@ -47,8 +47,7 @@ parcel Lucy;
  *     sv => Swedish,
  *     tr => Turkish,
  */
-public class Lucy::Analysis::PolyAnalyzer
-    inherits Lucy::Analysis::Analyzer : dumpable {
+public class Lucy::Analysis::PolyAnalyzer inherits Lucy::Analysis::Analyzer {
 
     VArray  *analyzers;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/SnowballStemmer.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/SnowballStemmer.cfh b/core/Lucy/Analysis/SnowballStemmer.cfh
index 3419eb2..e644dbc 100644
--- a/core/Lucy/Analysis/SnowballStemmer.cfh
+++ b/core/Lucy/Analysis/SnowballStemmer.cfh
@@ -26,7 +26,7 @@ parcel Lucy;
  */
 
 public class Lucy::Analysis::SnowballStemmer cnick SnowStemmer
-    inherits Lucy::Analysis::Analyzer : dumpable {
+    inherits Lucy::Analysis::Analyzer {
 
     void *snowstemmer;
     CharBuf *language;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Analysis/SnowballStopFilter.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Analysis/SnowballStopFilter.cfh b/core/Lucy/Analysis/SnowballStopFilter.cfh
index 68e172a..1c253e6 100644
--- a/core/Lucy/Analysis/SnowballStopFilter.cfh
+++ b/core/Lucy/Analysis/SnowballStopFilter.cfh
@@ -55,7 +55,7 @@ parcel Lucy;
  */
 
 public class Lucy::Analysis::SnowballStopFilter cnick SnowStop
-    inherits Lucy::Analysis::Analyzer : dumpable {
+    inherits Lucy::Analysis::Analyzer {
 
     Hash *stoplist;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Document/Doc.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Document/Doc.cfh b/core/Lucy/Document/Doc.cfh
index 60c906d..12df64d 100644
--- a/core/Lucy/Document/Doc.cfh
+++ b/core/Lucy/Document/Doc.cfh
@@ -22,8 +22,7 @@ parcel Lucy;
  * or more fields, each of which has a value.
  */
 
-public class Lucy::Document::Doc inherits Clownfish::Obj
-    : dumpable {
+public class Lucy::Document::Doc inherits Clownfish::Obj {
 
     void        *fields;
     int32_t      doc_id;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Index/Similarity.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Index/Similarity.cfh b/core/Lucy/Index/Similarity.cfh
index bbb314b..ca523aa 100644
--- a/core/Lucy/Index/Similarity.cfh
+++ b/core/Lucy/Index/Similarity.cfh
@@ -33,8 +33,7 @@ parcel Lucy;
  * scores from multiple fields.
  */
 
-public class Lucy::Index::Similarity cnick Sim
-    inherits Clownfish::Obj : dumpable {
+public class Lucy::Index::Similarity cnick Sim inherits Clownfish::Obj {
 
     float  *norm_decoder;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Index/Snapshot.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Index/Snapshot.cfh b/core/Lucy/Index/Snapshot.cfh
index 8df8c77..d82714f 100644
--- a/core/Lucy/Index/Snapshot.cfh
+++ b/core/Lucy/Index/Snapshot.cfh
@@ -26,7 +26,7 @@ parcel Lucy;
  * associated with a single Snapshot.
  */
 
-public class Lucy::Index::Snapshot inherits Clownfish::Obj : dumpable {
+public class Lucy::Index::Snapshot inherits Clownfish::Obj {
 
     Hash        *entries;
     CharBuf     *path;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Plan/BlobType.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Plan/BlobType.cfh b/core/Lucy/Plan/BlobType.cfh
index b68486c..3679ddc 100644
--- a/core/Lucy/Plan/BlobType.cfh
+++ b/core/Lucy/Plan/BlobType.cfh
@@ -21,8 +21,7 @@ parcel Lucy;
  * BlobType is an implementation of FieldType tuned for use with fields
  * containing binary data, which cannot be indexed or searched -- only stored.
  */
-public class Lucy::Plan::BlobType inherits Lucy::Plan::FieldType
-    : dumpable {
+public class Lucy::Plan::BlobType inherits Lucy::Plan::FieldType {
 
     /**
      * @param stored boolean indicating whether the field should be stored.

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Plan/FullTextType.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Plan/FullTextType.cfh b/core/Lucy/Plan/FullTextType.cfh
index 7228f70..d94c69d 100644
--- a/core/Lucy/Plan/FullTextType.cfh
+++ b/core/Lucy/Plan/FullTextType.cfh
@@ -28,8 +28,7 @@ parcel Lucy;
  * For an exact-match, single value field type using character data, see
  * L<StringType|Lucy::Plan::StringType>.
  */
-public class Lucy::Plan::FullTextType
-    inherits Lucy::Plan::TextType : dumpable {
+public class Lucy::Plan::FullTextType inherits Lucy::Plan::TextType {
 
     bool        highlightable;
     Analyzer   *analyzer;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Plan/NumericType.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Plan/NumericType.cfh b/core/Lucy/Plan/NumericType.cfh
index db514ec..33c7216 100644
--- a/core/Lucy/Plan/NumericType.cfh
+++ b/core/Lucy/Plan/NumericType.cfh
@@ -16,8 +16,7 @@
 
 parcel Lucy;
 
-class Lucy::Plan::NumericType cnick NumType
-    inherits Lucy::Plan::FieldType : dumpable {
+class Lucy::Plan::NumericType cnick NumType inherits Lucy::Plan::FieldType {
 
     public inert NumericType*
     init(NumericType *self);
@@ -47,11 +46,9 @@ class Lucy::Plan::NumericType cnick NumType
     Load(NumericType *self, Obj *dump);
 }
 
-abstract class Lucy::Plan::FloatType
-    inherits Lucy::Plan::NumericType : dumpable { }
+abstract class Lucy::Plan::FloatType inherits Lucy::Plan::NumericType { }
 
-class Lucy::Plan::Float64Type
-    inherits Lucy::Plan::FloatType : dumpable {
+class Lucy::Plan::Float64Type inherits Lucy::Plan::FloatType {
 
     public inert Float64Type*
     new();
@@ -73,8 +70,7 @@ class Lucy::Plan::Float64Type
     Equals(Float64Type *self, Obj *other);
 }
 
-class Lucy::Plan::Float32Type
-    inherits Lucy::Plan::FloatType : dumpable {
+class Lucy::Plan::Float32Type inherits Lucy::Plan::FloatType {
 
     public inert Float32Type*
     new();
@@ -96,11 +92,9 @@ class Lucy::Plan::Float32Type
     Equals(Float32Type *self, Obj *other);
 }
 
-abstract class Lucy::Plan::IntType
-    inherits Lucy::Plan::NumericType : dumpable { }
+abstract class Lucy::Plan::IntType inherits Lucy::Plan::NumericType { }
 
-class Lucy::Plan::Int32Type
-    inherits Lucy::Plan::IntType : dumpable {
+class Lucy::Plan::Int32Type inherits Lucy::Plan::IntType {
 
     public inert Int32Type*
     new();
@@ -122,8 +116,7 @@ class Lucy::Plan::Int32Type
     Equals(Int32Type *self, Obj *other);
 }
 
-class Lucy::Plan::Int64Type
-    inherits Lucy::Plan::IntType : dumpable {
+class Lucy::Plan::Int64Type inherits Lucy::Plan::IntType {
 
     public inert Int64Type*
     new();

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Plan/StringType.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Plan/StringType.cfh b/core/Lucy/Plan/StringType.cfh
index fa8667e..a906172 100644
--- a/core/Lucy/Plan/StringType.cfh
+++ b/core/Lucy/Plan/StringType.cfh
@@ -20,8 +20,7 @@ parcel Lucy;
  *
  * Lucy::Plan::StringType is used for "exact-match" strings.
  */
-public class Lucy::Plan::StringType
-    inherits Lucy::Plan::TextType : dumpable {
+public class Lucy::Plan::StringType inherits Lucy::Plan::TextType {
 
     /**
      * @param boost floating point per-field boost.

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/ANDQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/ANDQuery.cfh b/core/Lucy/Search/ANDQuery.cfh
index e7d2bb3..f17eeda 100644
--- a/core/Lucy/Search/ANDQuery.cfh
+++ b/core/Lucy/Search/ANDQuery.cfh
@@ -22,8 +22,7 @@ parcel Lucy;
  * only when all of its children match, so its result set is the intersection
  * of their result sets.  Documents which match receive a summed score.
  */
-public class Lucy::Search::ANDQuery inherits Lucy::Search::PolyQuery
-    : dumpable {
+public class Lucy::Search::ANDQuery inherits Lucy::Search::PolyQuery {
 
     inert incremented ANDQuery*
     new(VArray *children = NULL);

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/LeafQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/LeafQuery.cfh b/core/Lucy/Search/LeafQuery.cfh
index 568898e..a5ac359 100644
--- a/core/Lucy/Search/LeafQuery.cfh
+++ b/core/Lucy/Search/LeafQuery.cfh
@@ -25,8 +25,7 @@ parcel Lucy;
  * L<PhraseQuery|Lucy::Search::PhraseQuery> objects, as attempting to
  * search a LeafQuery causes an error.
  */
-public class Lucy::Search::LeafQuery inherits Lucy::Search::Query
-    : dumpable {
+public class Lucy::Search::LeafQuery inherits Lucy::Search::Query {
 
     CharBuf *field;
     CharBuf *text;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/MatchAllQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/MatchAllQuery.cfh b/core/Lucy/Search/MatchAllQuery.cfh
index 224392a..bdbbc72 100644
--- a/core/Lucy/Search/MatchAllQuery.cfh
+++ b/core/Lucy/Search/MatchAllQuery.cfh
@@ -23,8 +23,7 @@ parcel Lucy;
  * which matches against another part of the query will be ranked higher than
  * a document which matches only via the MatchAllQuery.
  */
-public class Lucy::Search::MatchAllQuery
-    inherits Lucy::Search::Query : dumpable {
+public class Lucy::Search::MatchAllQuery inherits Lucy::Search::Query {
 
     inert incremented MatchAllQuery*
     new();

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/NOTQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/NOTQuery.cfh b/core/Lucy/Search/NOTQuery.cfh
index 874dbb8..66f8eb8 100644
--- a/core/Lucy/Search/NOTQuery.cfh
+++ b/core/Lucy/Search/NOTQuery.cfh
@@ -27,8 +27,7 @@ parcel Lucy;
  * semantics.
  */
 
-public class Lucy::Search::NOTQuery inherits Lucy::Search::PolyQuery
-    : dumpable {
+public class Lucy::Search::NOTQuery inherits Lucy::Search::PolyQuery {
 
     /**
      * @param negated_query The Query to be inverted.

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/NoMatchQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/NoMatchQuery.cfh b/core/Lucy/Search/NoMatchQuery.cfh
index 461274f..3abfcc1 100644
--- a/core/Lucy/Search/NoMatchQuery.cfh
+++ b/core/Lucy/Search/NoMatchQuery.cfh
@@ -23,8 +23,7 @@ parcel Lucy;
  * L<QueryParser|Lucy::Search::QueryParser> is asked to parse an empty
  * string.
  */
-public class Lucy::Search::NoMatchQuery inherits Lucy::Search::Query
-    : dumpable {
+public class Lucy::Search::NoMatchQuery inherits Lucy::Search::Query {
 
     bool fails_to_match;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/ORQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/ORQuery.cfh b/core/Lucy/Search/ORQuery.cfh
index c7bcdd9..5845c54 100644
--- a/core/Lucy/Search/ORQuery.cfh
+++ b/core/Lucy/Search/ORQuery.cfh
@@ -24,8 +24,7 @@ parcel Lucy;
  * child Queries.
  */
 
-public class Lucy::Search::ORQuery inherits Lucy::Search::PolyQuery
-    : dumpable {
+public class Lucy::Search::ORQuery inherits Lucy::Search::PolyQuery {
 
     inert incremented ORQuery*
     new(VArray *children = NULL);

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/PhraseQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/PhraseQuery.cfh b/core/Lucy/Search/PhraseQuery.cfh
index 34e4936..eaae333 100644
--- a/core/Lucy/Search/PhraseQuery.cfh
+++ b/core/Lucy/Search/PhraseQuery.cfh
@@ -22,8 +22,7 @@ parcel Lucy;
  * against an ordered sequence of terms.
  */
 
-public class Lucy::Search::PhraseQuery inherits Lucy::Search::Query
-    : dumpable {
+public class Lucy::Search::PhraseQuery inherits Lucy::Search::Query {
 
     CharBuf       *field;
     VArray        *terms;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/PolyQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/PolyQuery.cfh b/core/Lucy/Search/PolyQuery.cfh
index 9b70142..f0c78ff 100644
--- a/core/Lucy/Search/PolyQuery.cfh
+++ b/core/Lucy/Search/PolyQuery.cfh
@@ -26,8 +26,7 @@ parcel Lucy;
  * these classes may serve as nodes in composite Query with a tree structure
  * which may be walked.
  */
-public abstract class Lucy::Search::PolyQuery
-    inherits Lucy::Search::Query : dumpable {
+public abstract class Lucy::Search::PolyQuery inherits Lucy::Search::Query {
 
     VArray    *children;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/Query.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/Query.cfh b/core/Lucy/Search/Query.cfh
index 92653bb..1bcfc23 100644
--- a/core/Lucy/Search/Query.cfh
+++ b/core/Lucy/Search/Query.cfh
@@ -34,7 +34,7 @@ parcel Lucy;
  * can actually match and score documents.
  */
 
-public class Lucy::Search::Query inherits Clownfish::Obj : dumpable {
+public class Lucy::Search::Query inherits Clownfish::Obj {
 
     float boost;
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/RangeQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/RangeQuery.cfh b/core/Lucy/Search/RangeQuery.cfh
index 01d9a9e..fcbd2e3 100644
--- a/core/Lucy/Search/RangeQuery.cfh
+++ b/core/Lucy/Search/RangeQuery.cfh
@@ -22,8 +22,7 @@ parcel Lucy;
  * within a given range.
  */
 
-public class Lucy::Search::RangeQuery inherits Lucy::Search::Query
-    : dumpable {
+public class Lucy::Search::RangeQuery inherits Lucy::Search::Query {
 
     CharBuf  *field;
     Obj      *lower_term;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/Lucy/Search/TermQuery.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Search/TermQuery.cfh b/core/Lucy/Search/TermQuery.cfh
index 3960497..cf6b293 100644
--- a/core/Lucy/Search/TermQuery.cfh
+++ b/core/Lucy/Search/TermQuery.cfh
@@ -23,8 +23,7 @@ parcel Lucy;
  * individual terms in a specific field.
  */
 
-public class Lucy::Search::TermQuery inherits Lucy::Search::Query
-    : dumpable {
+public class Lucy::Search::TermQuery inherits Lucy::Search::Query {
 
     CharBuf *field;
     Obj     *term;

http://git-wip-us.apache.org/repos/asf/lucy/blob/ee8fc5c3/core/LucyX/Search/ProximityQuery.cfh
----------------------------------------------------------------------
diff --git a/core/LucyX/Search/ProximityQuery.cfh b/core/LucyX/Search/ProximityQuery.cfh
index d55eb54..0d02a24 100644
--- a/core/LucyX/Search/ProximityQuery.cfh
+++ b/core/LucyX/Search/ProximityQuery.cfh
@@ -22,8 +22,7 @@ parcel Lucy;
  * against an ordered sequence of terms.
  */
 
-public class LucyX::Search::ProximityQuery inherits Lucy::Search::Query
-    : dumpable {
+public class LucyX::Search::ProximityQuery inherits Lucy::Search::Query {
 
     CharBuf       *field;
     VArray        *terms;