Skip to content

Commit

Permalink
Fix typo in parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
olim7t committed Jun 21, 2019
1 parent 0b9551b commit 32d2675
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -291,9 +291,9 @@ private Optional<String> getComputedFormula(
return Optional.empty();
}

private CqlNameGenerator buildCqlNameGenerator(Set<TypeElement> typeHierachy) {
private CqlNameGenerator buildCqlNameGenerator(Set<TypeElement> typeHierarchy) {
Optional<ResolvedAnnotation<NamingStrategy>> annotation =
AnnotationScanner.getClassAnnotation(NamingStrategy.class, typeHierachy);
AnnotationScanner.getClassAnnotation(NamingStrategy.class, typeHierarchy);
if (!annotation.isPresent()) {
return CqlNameGenerator.DEFAULT;
}
Expand Down

0 comments on commit 32d2675

Please sign in to comment.