[Title] Fixed version validation 16/10316/1
authorchanghyun1.lee <changhyun1.lee@samsung.com>
Fri, 27 Sep 2013 10:57:41 +0000 (19:57 +0900)
committerchanghyun1.lee <changhyun1.lee@samsung.com>
Fri, 27 Sep 2013 10:57:41 +0000 (19:57 +0900)
[Desc.]
[Issue] N_SE-53482

Change-Id: I392ee83022996d0fd45ddc7c3de975cda255e21c

org.tizen.common/src/org/tizen/common/util/ValidationUtil.java

index 9be3798..b1e0e4b 100644 (file)
@@ -146,7 +146,7 @@ public class ValidationUtil {
      * @return {@code true} if version is valid version
      */
     public static boolean checkForVersion( String version ) {
-        if ( version == null || StringUtil.isEmpty( version ) || version.equals( "0.0.0" ) || version.equals( "0.0" ) ) {
+        if ( version == null || StringUtil.isEmpty( version ) || version.equals( "0.0" ) ) {
             return false;
         }