Internal: adjusted internal requests visibility from public to package private

This commit is contained in:
javanna 2014-08-20 12:11:07 +02:00 committed by Luca Cavanna
parent 3450e82855
commit 61da463dd0
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ public class TransportIndicesSegmentsAction extends TransportBroadcastOperationA
return new ShardSegments(indexShard.routingEntry(), indexShard.engine().segments());
}
public static class IndexShardSegmentRequest extends BroadcastShardOperationRequest {
static class IndexShardSegmentRequest extends BroadcastShardOperationRequest {
IndexShardSegmentRequest() {
}

View File

@ -200,7 +200,7 @@ public class TransportIndicesStatsAction extends TransportBroadcastOperationActi
return new ShardStats(indexShard, flags);
}
public static class IndexShardStatsRequest extends BroadcastShardOperationRequest {
static class IndexShardStatsRequest extends BroadcastShardOperationRequest {
// TODO if there are many indices, the request might hold a large indices array..., we don't really need to serialize it
IndicesStatsRequest request;