Skip to content

Commit

Permalink
0001583: Create new value map column transform
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanes committed Feb 14, 2014
1 parent a855bec commit b4c321e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -60,9 +60,9 @@ private static String getValue(String value,String expression) {
int equalIndex = keyValue.indexOf("=");
if (equalIndex != -1) {
if (keyValue.substring(0, equalIndex).equals(value)) {
return keyValue.substring(equalIndex);
return keyValue.substring(equalIndex+1);
} else if (keyValue.substring(0, equalIndex).equals("*")) {
defaultValue = keyValue.substring(equalIndex);
defaultValue = keyValue.substring(equalIndex+1);
}
}
}
Expand Down

0 comments on commit b4c321e

Please sign in to comment.