File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
modules/ingest-common/src/main/java/org/elasticsearch/ingest/common Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -118,19 +118,19 @@ public Object convert(Object value) {
118118 }
119119 try {
120120 return BOOLEAN .convert (value );
121- } catch (IllegalArgumentException e ) {}
121+ } catch (IllegalArgumentException ignored ) {}
122122 try {
123123 return INTEGER .convert (value );
124- } catch (IllegalArgumentException e ) {}
124+ } catch (IllegalArgumentException ignored ) {}
125125 try {
126126 return LONG .convert (value );
127- } catch (IllegalArgumentException e ) {}
127+ } catch (IllegalArgumentException ignored ) {}
128128 try {
129129 return FLOAT .convert (value );
130- } catch (IllegalArgumentException e ) {}
130+ } catch (IllegalArgumentException ignored ) {}
131131 try {
132132 return DOUBLE .convert (value );
133- } catch (IllegalArgumentException e ) {}
133+ } catch (IllegalArgumentException ignored ) {}
134134 return value ;
135135 }
136136 };
You can’t perform that action at this time.
0 commit comments