change visibility

This commit is contained in:
Martijn van Groningen 2015-07-10 17:42:53 +02:00
parent 512239041b
commit 03148dc3b0
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ public class IndexNameExpressionResolver {
* @param aliasesOrIndices the array containing index names
* @return true if the provided array maps to all indices, false otherwise
*/
static boolean isAllIndices(List<String> aliasesOrIndices) {
public static boolean isAllIndices(List<String> aliasesOrIndices) {
return aliasesOrIndices == null || aliasesOrIndices.isEmpty() || isExplicitAllPattern(aliasesOrIndices);
}