[Title] change max and min value of logitude and latitude.
authorjihye kim <jihye1128.kim@samsung.com>
Sun, 15 Apr 2012 09:45:00 +0000 (18:45 +0900)
committerjihye kim <jihye1128.kim@samsung.com>
Sun, 15 Apr 2012 09:45:00 +0000 (18:45 +0900)
[Type] bug fix
[Module] event injector
[Priority] major
[Jira#]N_SE-580
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

org.tizen.location.manual/src/org/tizen/location/manual/page/Coordinate.java
package/pkginfo.manifest

index 6576406..7cf849f 100644 (file)
@@ -184,7 +184,7 @@ public class Coordinate extends AbstractInjectorPage {
                
                value = Double.parseDouble(latitudeText.getText());
                
-               if (value >= 90 || value <= -90) {
+               if (value > 90 || value < -90) {
                        return false;
                }
                
@@ -194,7 +194,7 @@ public class Coordinate extends AbstractInjectorPage {
                
                value = Double.parseDouble(longitudeText.getText());
                
-               if (value >= 180 || value <= -180) {
+               if (value > 180 || value < -180) {
                        return false;
                } 
                
index 4c1e1e7..0a07d06 100644 (file)
@@ -1,5 +1,5 @@
 Package:eventinjector-eplugin
-Version:0.2.16
+Version:0.2.17
 OS:linux
 Build-host-os:linux
 Maintainer:yeongkyoon Lee <yeongkyoon.lee@samsung.com>, sungmin Ha <sungmin82.ha@samsung.com>
@@ -9,7 +9,7 @@ Install-dependency:common-eplugin[linux], base-ide-product[linux]
 Source:eventinjector-eplugin
 
 Package:eventinjector-eplugin
-Version:0.2.16
+Version:0.2.17
 OS:windows
 Build-host-os:linux
 Maintainer:yeongkyoon Lee <yeongkyoon.lee@samsung.com>, sungmin Ha <sungmin82.ha@samsung.com>