Updated Branches: refs/heads/trunk 78d6f64f3 -> 998131635
simple javadoc fixes Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/99813163 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/99813163 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/99813163 Branch: refs/heads/trunk Commit: 998131635c630459e6bc8bf898788d4d7c752e9b Parents: 78d6f64 Author: Dave Brosius <[email protected]> Authored: Fri Nov 2 02:46:31 2012 -0400 Committer: Dave Brosius <[email protected]> Committed: Fri Nov 2 02:46:31 2012 -0400 ---------------------------------------------------------------------- interface/cassandra.thrift | 8 +- .../org/apache/cassandra/thrift/Cassandra.java | 1284 +++++++------- .../cassandra/db/ColumnFamilyStoreMBean.java | 3 +- .../db/columniterator/SSTableSliceIterator.java | 4 +- .../db/compaction/CompactionManagerMBean.java | 2 +- .../db/marshal/AbstractCompositeType.java | 3 +- .../apache/cassandra/io/ISSTableSerializer.java | 2 +- .../apache/cassandra/locator/TokenMetadata.java | 2 +- .../service/EmbeddedCassandraService.java | 2 +- .../cassandra/service/StorageProxyMBean.java | 10 +- .../apache/cassandra/service/StorageService.java | 6 +- 11 files changed, 664 insertions(+), 662 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/99813163/interface/cassandra.thrift ---------------------------------------------------------------------- diff --git a/interface/cassandra.thrift b/interface/cassandra.thrift index 05c6e58..c52263b 100644 --- a/interface/cassandra.thrift +++ b/interface/cassandra.thrift @@ -311,7 +311,7 @@ struct IndexExpression { } /** - * @Deprecated: use a KeyRange with row_filter in get_range_slices instead + * @deprecated use a KeyRange with row_filter in get_range_slices instead */ struct IndexClause { 1: required list<IndexExpression> expressions, @@ -473,7 +473,7 @@ struct KsDef { 2: required string strategy_class, 3: optional map<string,string> strategy_options, - /** @deprecated, ignored */ + /** @deprecated ignored */ 4: optional i32 replication_factor, 5: required list<CfDef> cf_defs, @@ -602,7 +602,7 @@ service Cassandra { /** Returns the subset of columns specified in SlicePredicate for the rows matching the IndexClause - @Deprecated; use get_range_slices instead with range.row_filter specified + @deprecated use get_range_slices instead with range.row_filter specified */ list<KeySlice> get_indexed_slices(1:required ColumnParent column_parent, 2:required IndexClause index_clause, @@ -822,7 +822,7 @@ service Cassandra { 4:SchemaDisagreementException sde) /** - * @Deprecated This is now a no-op. Please use the CQL3 specific methods instead. + * @deprecated This is now a no-op. Please use the CQL3 specific methods instead. */ void set_cql_version(1: required string version) throws (1:InvalidRequestException ire) }
