Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2674)

Unified Diff: dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartToolsPlugin.java

Issue 106993002: Revert "Change SDK/DartEditor versioning scheme to semantic versions." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartToolsPlugin.java
diff --git a/dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartToolsPlugin.java b/dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartToolsPlugin.java
index 8746c1e7a79d7c6510a169929c8ce801f6a742d7..2a1b9fc7e26ad009ca4a72aa4661b3e35a415a84 100644
--- a/dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartToolsPlugin.java
+++ b/dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartToolsPlugin.java
@@ -290,7 +290,11 @@ public class DartToolsPlugin extends AbstractUIPlugin {
return null;
}
- return bundle.getHeaders().get(Constants.BUNDLE_VERSION);
+ String version = bundle.getHeaders().get(Constants.BUNDLE_VERSION);
+
+ version = version.replace(".r", "_r").replace(".qual", "_qual");
+
+ return version;
}
public static IWorkspace getWorkspace() {

Powered by Google App Engine
This is Rietveld 408576698