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/02/12 00:39:42 UTC

[tapestry-5] branch 5.6.x updated: TAP5-2645: fixing compilation error

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

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


The following commit(s) were added to refs/heads/5.6.x by this push:
     new 511da3d  TAP5-2645: fixing compilation error
511da3d is described below

commit 511da3d763d4f1c3020f7af0a5cd70e302204e71
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Thu Feb 11 21:39:31 2021 -0300

    TAP5-2645: fixing compilation error
---
 .../main/java/org/apache/tapestry5/ioc/modules/TapestryIOCModule.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/modules/TapestryIOCModule.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/modules/TapestryIOCModule.java
index f0ccc2a..bafc934 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/modules/TapestryIOCModule.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/modules/TapestryIOCModule.java
@@ -241,7 +241,7 @@ public final class TapestryIOCModule
      * </ul>
      */
     @Contribute(TypeCoercer.class)
-    public static void provideJSR10TypeCoercions(MappedConfiguration<CoercionTuple.Key, CoercionTuple> configuration)
+    public static void provideJSR10TypeCoercions(Configuration<CoercionTuple> configuration)
     {
         BasicTypeCoercions.provideJSR310TypeCoercions(configuration);
     }