Skip to content

Commit

Permalink
HSEARCH-3406 Fix a typo in DocumentIdBaseIT
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Nov 6, 2018
1 parent 02481a4 commit ee5a0b5
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -114,9 +114,9 @@ public Enum<?> getId() {
public void error_unableToResolveDefaultIdentifierBridgeFromSourceType_enumSuperClassWithParameters() {
@Indexed
class IndexedEntity {
Enum<FieldBaseIT.EnumForEnumSuperClassTest> id;
Enum<EnumForEnumSuperClassTest> id;
@DocumentId
public Enum<FieldBaseIT.EnumForEnumSuperClassTest> getId() {
public Enum<EnumForEnumSuperClassTest> getId() {
return id;
}
}
Expand All @@ -130,7 +130,7 @@ public Enum<FieldBaseIT.EnumForEnumSuperClassTest> getId() {
.pathContext( ".id" )
.failure(
"Unable to find a default identifier bridge implementation for type 'java.lang.Enum<"
+ FieldBaseIT.EnumForEnumSuperClassTest.class.getName() + ">'"
+ EnumForEnumSuperClassTest.class.getName() + ">'"
)
.build()
);
Expand Down

0 comments on commit ee5a0b5

Please sign in to comment.