put back Version getSBSv2Version(boolean forceScan) in ISDKManager. Tracebuilder uses it, and could be an important API.
--- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/AbstractSDKManager.java Thu Aug 05 15:25:18 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/AbstractSDKManager.java Thu Aug 05 15:32:59 2010 -0500
@@ -520,12 +520,6 @@
SDKCorePlugin.getDefault().getLog().log(new Status(IStatus.ERROR, SDKCorePlugin.getPluginId(), message, t));
}
- /**
- * Get the version of SBSv2 installed on the PATH.
- * @param boolean forceScan - forceScan even if version already determined.
- * @return A Verion object of the installed SBSv2 version. Version will be 0.0.0 if not found.
- * @since 2.3
- */
public Version getSBSv2Version(boolean forceScan) {
if (sbsV2Version == null || forceScan){
sbsV2Version = new Version(0, 0, 0);
--- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISDKManager.java Thu Aug 05 15:25:18 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISDKManager.java Thu Aug 05 15:32:59 2010 -0500
@@ -109,4 +109,12 @@
*/
public void removeInstalledSdkChangeListener(ICarbideInstalledSDKChangeListener listener);
+ /**
+ * Get the version of SBSv2 installed on the PATH.
+ * @param boolean forceScan - forceScan even if version already determined.
+ * @return A Verion object of the installed SBSv2 version. Version will be 0.0.0 if not found.
+ * @since 2.3
+ */
+ public Version getSBSv2Version(boolean forceScan);
+
}