Skip to content

Commit

Permalink
Fixed spelling error.
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgeorge committed May 26, 2016
1 parent f10c186 commit cbb4bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch04/src/main/java/filters/CustomFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public boolean filterRow() {
public byte [] toByteArray() {
FilterProtos.CustomFilter.Builder builder =
FilterProtos.CustomFilter.newBuilder();
if (value != null) builder.setValue(ByteStringer.wrap(value)); // co CustomFilter-6-Write Writes the given value out so it can be send to the servers.
if (value != null) builder.setValue(ByteStringer.wrap(value)); // co CustomFilter-6-Write Writes the given value out so it can be sent to the servers.
return builder.build().toByteArray();
}

Expand Down

0 comments on commit cbb4bd0

Please sign in to comment.