Skip to content

Commit 429d5d7

Browse files
committed
MINOR: Fix warnings for -Werror
Signed-off-by: Arjun Satish <arjun@confluent.io>
1 parent 3701e9f commit 429d5d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/confluent/connect/elasticsearch/jest/JestElasticsearchClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ private boolean indexExists(String index) {
222222
if (indexCache.contains(index)) {
223223
return true;
224224
}
225-
Action action = new IndicesExists.Builder(index).build();
225+
Action<?> action = new IndicesExists.Builder(index).build();
226226
try {
227227
JestResult result = client.execute(action);
228228
return result.isSucceeded();

0 commit comments

Comments
 (0)