Skip to content

Commit

Permalink
fix typo on using arg in message
Browse files Browse the repository at this point in the history
  • Loading branch information
zznate committed Dec 27, 2012
1 parent d0d2b77 commit d5db675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/usergrid/vx/experimental/IntraOp.java
Expand Up @@ -150,7 +150,7 @@ public Type getType() {

private static void checkForBlankStr(String arg, String msg, Type type) {
Preconditions.checkArgument(arg != null && arg.length() > 0,
"A non-blank '" + msg + "' is required for " + Type.SETCOLUMNFAMILY);
"A non-blank '" + msg + "' is required for " + type);
}

public enum Type {
Expand Down

0 comments on commit d5db675

Please sign in to comment.