add empty interface implementation to abstract class to remove burden from subclasses (avoid API break)
authordadubrow
Fri, 06 Aug 2010 14:05:52 -0500
changeset 1790 245ab754d54b
parent 1788 7891aec91f65
child 1791 727385d8e2b3
add empty interface implementation to abstract class to remove burden from subclasses (avoid API break)
connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService2.java
debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/service/TracingConnectedService.java
--- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService2.java	Fri Aug 06 11:25:31 2010 -0500
+++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService2.java	Fri Aug 06 14:05:52 2010 -0500
@@ -225,4 +225,9 @@
 	public void setDeviceOS(String familyName, Version version) {
 		// @deprecated
 	}
+
+
+	public void setDeviceOS(String familyName, String version) {
+		// empty implementation
+	}
 }
\ No newline at end of file
--- a/debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/service/TracingConnectedService.java	Fri Aug 06 11:25:31 2010 -0500
+++ b/debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/service/TracingConnectedService.java	Fri Aug 06 14:05:52 2010 -0500
@@ -242,8 +242,4 @@
 		
 		return new TestResult(estatus, getShortDescription(estatus), message);
 	}
-
-	public void setDeviceOS(String familyName, String version) {
-		// unimplemented
-	}
 }
\ No newline at end of file