summaryrefslogtreecommitdiff
path: root/src/Chapter2/support/Location.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Chapter2/support/Location.java')
-rw-r--r--src/Chapter2/support/Location.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/Chapter2/support/Location.java b/src/Chapter2/support/Location.java
deleted file mode 100644
index 7f6234f..0000000
--- a/src/Chapter2/support/Location.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
-package Chapter2.support;
-
-/**
- *
- * @author shamanth
- */
-public class Location
-{
- public Double latitude;
- public Double longitude;
-
- public Location(Double lat,Double lng)
- {
- latitude = lat;
- longitude = lng;
- }
-
- @Override
- public String toString()
- {
- return "Latitude: "+latitude+" & Longitude: "+longitude;
- }
-}