Skip to content
Snippets Groups Projects
Commit 4762498f authored by buczekp's avatar buczekp
Browse files

minor: fix warning

SVN: 18223
parent e06185ce
No related branches found
No related tags found
No related merge requests found
...@@ -222,7 +222,7 @@ public class ReflectionStringTraverser ...@@ -222,7 +222,7 @@ public class ReflectionStringTraverser
// array[index] contains collection of primitive types which will be modified if necessary // array[index] contains collection of primitive types which will be modified if necessary
private void visitStringCollectionArrayElement(Object array, int index, Object collection) private void visitStringCollectionArrayElement(Object array, int index, Object collection)
{ {
Collection newCollection = visitStringCollection(collection); Collection<String> newCollection = visitStringCollection(collection);
Array.set(array, index, newCollection); Array.set(array, index, newCollection);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment