You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2021/05/30 12:08:47 UTC

[tapestry-5] branch master updated: Fix import errors

This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new faa998b  Fix import errors
faa998b is described below

commit faa998bb1b2da31d70aec2945c1a21b5c85c5e86
Author: w0r1dhe110 <35...@users.noreply.github.com>
AuthorDate: Tue May 25 22:26:18 2021 +0800

    Fix import errors
    
    In the new version, an import error is caused due to changes in the request and response interface
---
 .../archetype-resources/src/main/java/services/AppModule.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/quickstart/src/main/resources/archetype-resources/src/main/java/services/AppModule.java b/quickstart/src/main/resources/archetype-resources/src/main/java/services/AppModule.java
index f9a7398..ed8ca8b 100644
--- a/quickstart/src/main/resources/archetype-resources/src/main/java/services/AppModule.java
+++ b/quickstart/src/main/resources/archetype-resources/src/main/java/services/AppModule.java
@@ -8,10 +8,10 @@ import org.apache.tapestry5.ioc.annotations.Contribute;
 import org.apache.tapestry5.ioc.annotations.Local;
 import org.apache.tapestry5.ioc.services.ApplicationDefaults;
 import org.apache.tapestry5.ioc.services.SymbolProvider;
-import org.apache.tapestry5.services.Request;
-import org.apache.tapestry5.services.RequestFilter;
-import org.apache.tapestry5.services.RequestHandler;
-import org.apache.tapestry5.services.Response;
+import org.apache.tapestry5.http.services.Request;
+import org.apache.tapestry5.http.services.RequestFilter;
+import org.apache.tapestry5.http.services.RequestHandler;
+import org.apache.tapestry5.http.services.Response;
 import org.slf4j.Logger;
 
 import java.io.IOException;