diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-27 15:58:01 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-27 15:58:31 +0300 |
commit | 3f4235c67fe174dad112fedcece85851fb83ef92 (patch) | |
tree | d3f7bf8595d552070356400dd1ef585d83e0314d | |
parent | 0e95b201c996378794af6726d841b740418e4370 (diff) | |
download | vaadin-framework-3f4235c67fe174dad112fedcece85851fb83ef92.tar.gz vaadin-framework-3f4235c67fe174dad112fedcece85851fb83ef92.zip |
Reverted accidentally commited fixed version number (#9413)
-rw-r--r-- | shared/src/com/vaadin/shared/Version.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/Version.java b/shared/src/com/vaadin/shared/Version.java index 9320698318..16f466fc6e 100644 --- a/shared/src/com/vaadin/shared/Version.java +++ b/shared/src/com/vaadin/shared/Version.java @@ -47,10 +47,10 @@ public class Version implements Serializable { /* Initialize version numbers from string replaced by build-script. */ static { - if ("7.0.0.dev-20120816-12".equals("@" + "VERSION" + "@")) { + if ("@VERSION@".equals("@" + "VERSION" + "@")) { VERSION = "9.9.9.INTERNAL-DEBUG-BUILD"; } else { - VERSION = "7.0.0.dev-20120816-12"; + VERSION = "@VERSION@"; } final String[] digits = VERSION.split("\\.", 4); VERSION_MAJOR = Integer.parseInt(digits[0]); |