summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqUpdate.java
diff options
context:
space:
mode:
authorsjtufs <sjtu_fs@outlook.com>2013-08-29 17:58:44 +0800
committersjtufs <sjtu_fs@outlook.com>2013-08-29 17:58:44 +0800
commit4c25c040f5f47b7b5cf055b7bba787da3f50a1d9 (patch)
tree842e1f9a130cbcaf458deba0b81d9c8690da7e38 /client/Piztor/src/com/macaroon/piztor/ReqUpdate.java
parent88894471c3d35bb9d25cf416bee07b08641c3149 (diff)
Update, pushing now
Diffstat (limited to 'client/Piztor/src/com/macaroon/piztor/ReqUpdate.java')
-rw-r--r--client/Piztor/src/com/macaroon/piztor/ReqUpdate.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/Piztor/src/com/macaroon/piztor/ReqUpdate.java b/client/Piztor/src/com/macaroon/piztor/ReqUpdate.java
index b7b8fba..234114a 100644
--- a/client/Piztor/src/com/macaroon/piztor/ReqUpdate.java
+++ b/client/Piztor/src/com/macaroon/piztor/ReqUpdate.java
@@ -5,12 +5,12 @@ package com.macaroon.piztor;
//--------------------------------------//
public class ReqUpdate extends Req{
- double lat; //latitude
- double lot; //longitude
+ double latitude; //latitude
+ double longitude; //longitude
- ReqUpdate(String token,String name,double latitude,double longitude,long time,long alive){
+ ReqUpdate(String token,String name,double lat,double lot,long time,long alive){
super(1,token,name,time,alive); //for type 1
- lat = latitude;
- lot = longitude;
+ latitude = lat;
+ longitude = lot;
}
} \ No newline at end of file