Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
TrumanDu authored Apr 2, 2019
1 parent ab7bc9f commit 85bd436
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void execute(RDBAnalyzeInfo<?> rdbAnalyzeInfo) {
} else {
for (int i = 0; i < keyPrefixSeparatorArray.length; i++) {
if (key.indexOf(keyPrefixSeparatorArray[i]) != -1) {
prefix = key.substring(0, key.indexOf(keyPrefixSeparatorArray[i]+1)) + "*";
prefix = key.substring(0, key.indexOf(keyPrefixSeparatorArray[i])+1) + "*";
flag = false;
break;
}
Expand Down

0 comments on commit 85bd436

Please sign in to comment.