# HG changeset patch # User dadubrow # Date 1281121552 18000 # Node ID 245ab754d54bb80475610624f50dbf584c513b77 # Parent 7891aec91f6516549ffd177051efd779276ddfaf add empty interface implementation to abstract class to remove burden from subclasses (avoid API break) diff -r 7891aec91f65 -r 245ab754d54b connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService2.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 diff -r 7891aec91f65 -r 245ab754d54b debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/service/TracingConnectedService.java --- 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