Whitespace!

This commit is contained in:
cheddar 2013-08-29 14:02:46 -05:00
parent 7834ffe6fc
commit c5760f43e4
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ public class LinearShardSpec implements ShardSpec {
@JsonCreator @JsonCreator
public LinearShardSpec( public LinearShardSpec(
@JsonProperty("partitionNum") Integer partitionNum @JsonProperty("partitionNum") Integer partitionNum
) { )
{
this.partitionNum = Preconditions.checkNotNull(partitionNum, "Must set partitionNum on LinearShardSpec"); this.partitionNum = Preconditions.checkNotNull(partitionNum, "Must set partitionNum on LinearShardSpec");
} }