Skip to content

Commit

Permalink
was not using HEADERS_KEY in HeaderColumnFamilyChooser, switched to u…
Browse files Browse the repository at this point in the history
…se it while querying the context
  • Loading branch information
dcapwell committed Jan 19, 2013
1 parent 60a92cb commit 981bd79
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -58,6 +58,6 @@ public void configure(final Context context) {
Preconditions.checkArgument(context.getString(HEADERS_KEY) != null, "chooser.headers must be defined");

joiner = Joiner.on(context.getString(JOINER_KEY, "_")).skipNulls();
headersKeys = HEADER_KEY_SPLITTER.split(context.getString("chooser.headers"));
headersKeys = HEADER_KEY_SPLITTER.split(context.getString(HEADERS_KEY));
}
}

0 comments on commit 981bd79

Please sign in to comment.