bryan-emmanuel / javageomodel

Automatically exported from code.google.com/p/javageomodel
0 stars 0 forks source link

Inapproriate variable names #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
 public void testHowToQueryOnABoundingBox() {
        double latSW = 44.8;
        double lonSW = -0.6;

        double latNE = 44.9;
        double lonNE = -0.7;

The variable names should be:

        double latS = 44.8;
        double latN = 44.9;

        double lonW = -0.6;
        double lonE = -0.7;

Original issue reported on code.google.com by yoichi.t...@gmail.com on 31 May 2010 at 10:45

GoogleCodeExporter commented 8 years ago

Original comment by alexandr...@gmail.com on 10 Nov 2010 at 7:30