Revision 8115 trunk/libraries/libJCRS/src/org/gvsig/crs/epsg/JNIBaseCrs.java

View differences:

JNIBaseCrs.java
4 4
public class JNIBaseCrs
5 5
{
6 6
	protected long cPtr;
7
	protected int longLat;
7
	protected int latLong;
8 8
	protected String _strCrs;
9 9
	protected native long loadCrs(String crs);
10 10
	protected native void freeCrs(long crs);
......
26 26
	}
27 27
	
28 28
	public boolean isLatlong() {
29
		longLat = isLatlong(cPtr);// cambiar por isLatlon(cPtr)
30
		if(longLat == 0)
29
		latLong = isLatlong(cPtr);
30
		if(latLong == 0)
31 31
			return false;
32 32
		return true;
33 33
	}

Also available in: Unified diff