HHH-13496 Prefer singletonList when possible

This commit is contained in:
Sanne Grinovero 2019-07-05 16:22:28 +01:00
parent 99ae7c94e3
commit 9196a4e01e
2 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,7 @@ package org.hibernate.boot.jaxb.internal.stax;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import javax.xml.namespace.QName;
@ -28,7 +29,8 @@ import org.hibernate.boot.xsd.MappingXsdSupport;
* @author Steve Ebersole
*/
public class HbmEventReader extends EventReaderDelegate {
private static final List<String> NAMESPACE_URIS_TO_MAP = Arrays.asList(
private static final List<String> NAMESPACE_URIS_TO_MAP = Collections.singletonList(
// we need to recognize the initial, prematurely-chosen hbm.xml xsd namespace
"http://www.hibernate.org/xsd/hibernate-mapping"
);

View File

@ -8,6 +8,7 @@ package org.hibernate.boot.jaxb.internal.stax;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import javax.xml.namespace.QName;
@ -39,7 +40,8 @@ import org.hibernate.boot.xsd.MappingXsdSupport;
* @author Hardy Ferentschik
*/
public class JpaOrmXmlEventReader extends EventReaderDelegate {
private static final List<String> NAMESPACE_URIS_TO_MAP = Arrays.asList(
private static final List<String> NAMESPACE_URIS_TO_MAP = Collections.singletonList(
// JPA 1.0 and 2.0 namespace uri
"http://java.sun.com/xml/ns/persistence/orm"
);