apm-sniffer/apm-sdk-plugin/elasticsearch-7.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/elasticsearch/v7/interceptor/IndicesClientRefreshMethodsInterceptor.java [62:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String buildIndicesString(String[] indices) {
        if (indices == null || indices.length == 0) {
            return "";
        }

        StringBuilder sb = new StringBuilder();
        int n = indices.length;
        for (int i = 0; i < n; i++) {
            sb.append(indices[i]);
            if (i < n - 1) {
                sb.append(',');
            }
        }
        return sb.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



apm-sniffer/apm-sdk-plugin/elasticsearch-6.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/elasticsearch/v6/interceptor/IndicesClientRefreshMethodsInterceptor.java [60:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String buildIndicesString(String[] indices) {
        if (indices == null || indices.length == 0) {
            return "";
        }

        StringBuilder sb = new StringBuilder();
        int n = indices.length;
        for (int i = 0; i < n; i++) {
            sb.append(indices[i]);
            if (i < n - 1) {
                sb.append(',');
            }
        }
        return sb.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



