This is an automated email from the ASF dual-hosted git repository.
thiagohp pushed a commit to branch rest
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/rest by this push:
new bd500ce TAP5-2696: fixing compilation error
bd500ce is described below
commit bd500ceba0c7fcb78ec63935d8a02d1e4783ea17
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Fri Dec 10 23:14:59 2021 -0300
TAP5-2696: fixing compilation error
---
.../org/apache/tapestry5/openapiviewer/test/services/AppModule.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/tapestry-openapi-viewer/src/test/java/org/apache/tapestry5/openapiviewer/test/services/AppModule.java
b/tapestry-openapi-viewer/src/test/java/org/apache/tapestry5/openapiviewer/test/services/AppModule.java
index a56e76a..8b3885a 100644
---
a/tapestry-openapi-viewer/src/test/java/org/apache/tapestry5/openapiviewer/test/services/AppModule.java
+++
b/tapestry-openapi-viewer/src/test/java/org/apache/tapestry5/openapiviewer/test/services/AppModule.java
@@ -34,7 +34,8 @@ public class AppModule
@Contribute(MappedEntityManager.class)
public static void provideMappedEntities(Configuration<String>
configuration)
{
-
org.apache.tapestry5.integration.app1.services.AppModule.provideMappedEntities(configuration);
+//
org.apache.tapestry5.integration.app1.services.AppModule.provideMappedEntities(configuration);
+
configuration.add("org.apache.tapestry5.integration.app1.data.rest.entities");
}
}