Polish: follow name convention - make immutable fields final

This commit is contained in:
igor-suhorukov
2018-02-10 02:07:15 +03:00
committed by Juergen Hoeller
parent 9bb7fcd997
commit 9a6fbf59c5
13 changed files with 29 additions and 29 deletions

View File

@@ -55,7 +55,7 @@ import org.springframework.util.StringUtils;
*/
public class SimpleJmsHeaderMapper extends AbstractHeaderMapper<Message> implements JmsHeaderMapper {
private static Set<Class<?>> SUPPORTED_PROPERTY_TYPES = new HashSet<>(Arrays.asList(new Class<?>[] {
private static final Set<Class<?>> SUPPORTED_PROPERTY_TYPES = new HashSet<>(Arrays.asList(new Class<?>[] {
Boolean.class, Byte.class, Double.class, Float.class, Integer.class, Long.class, Short.class, String.class}));