in locales-utils/src/main/java/com/spotify/i18n/locales/utils/hierarchy/LocalesHierarchyUtils.java [120:124]
public static boolean isSameLocale(final ULocale l1, final ULocale l2) {
Preconditions.checkNotNull(l1);
Preconditions.checkNotNull(l2);
return l1.equals(l2);
}