X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.support.castor%2Fsrc%2Ftest%2Fjava%2Forg%2Fargeo%2Fslc%2Fcastor%2FAbstractCastorTestCase.java;h=a2f48c1997a770e38da09938ccec51785269af35;hb=5aa18045bcdd46992b9417f7864fec455e9fc979;hp=346fc859fcd590ac131a9685cd746d96aeed036d;hpb=1ec5ffef6e38d7804de444391447320ba5a6dded;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.support.castor/src/test/java/org/argeo/slc/castor/AbstractCastorTestCase.java b/runtime/org.argeo.slc.support.castor/src/test/java/org/argeo/slc/castor/AbstractCastorTestCase.java index 346fc859f..a2f48c199 100644 --- a/runtime/org.argeo.slc.support.castor/src/test/java/org/argeo/slc/castor/AbstractCastorTestCase.java +++ b/runtime/org.argeo.slc.support.castor/src/test/java/org/argeo/slc/castor/AbstractCastorTestCase.java @@ -54,7 +54,8 @@ public abstract class AbstractCastorTestCase extends AbstractSpringTestCase { return (T) unmarshal(xml); } + @SuppressWarnings("unchecked") protected T marshUnmarsh(Object obj) throws Exception { - return marshUnmarsh(obj, true); + return (T) marshUnmarsh(obj, true); } }