From ee5a0b598715837a3a9e95d8057be646e221cfcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Tue, 6 Nov 2018 14:09:13 +0100 Subject: [PATCH] HSEARCH-3406 Fix a typo in DocumentIdBaseIT --- .../mapper/pojo/mapping/definition/DocumentIdBaseIT.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integrationtest/mapper/pojo/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/mapping/definition/DocumentIdBaseIT.java b/integrationtest/mapper/pojo/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/mapping/definition/DocumentIdBaseIT.java index d2564fab1dd..e933c01a0c7 100644 --- a/integrationtest/mapper/pojo/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/mapping/definition/DocumentIdBaseIT.java +++ b/integrationtest/mapper/pojo/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/mapping/definition/DocumentIdBaseIT.java @@ -114,9 +114,9 @@ public Enum getId() { public void error_unableToResolveDefaultIdentifierBridgeFromSourceType_enumSuperClassWithParameters() { @Indexed class IndexedEntity { - Enum id; + Enum id; @DocumentId - public Enum getId() { + public Enum getId() { return id; } } @@ -130,7 +130,7 @@ public Enum 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() );