# HG changeset patch # User Eugene Ostroukhov # Date 1268764867 25200 # Node ID 7f7b30fe54c9a58e59ca0e33c8b9bcbbf3f950c7 # Parent 2c88d577a0e96dbe07d3fc1ce6d9611df7a619e1 Some warnings were cleared diff -r 2c88d577a0e9 -r 7f7b30fe54c9 org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/property/LaunchableFactory.java --- a/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/property/LaunchableFactory.java Tue Mar 16 11:38:01 2010 -0700 +++ b/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/property/LaunchableFactory.java Tue Mar 16 11:41:07 2010 -0700 @@ -4,12 +4,14 @@ public class LaunchableFactory implements IAdapterFactory { + @SuppressWarnings("unchecked") public Object getAdapter(Object adaptableObject, Class adapterType) { // It is only needed to exist return null; } - public Class[] getAdapterList() { + @SuppressWarnings("unchecked") + public Class[] getAdapterList() { // It is only needed to exist return null; }