Revision 28367 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/featureiterators/SpatialQueryFeatureIterator.java

View differences:

SpatialQueryFeatureIterator.java
145 145
		   this.sourceProjection != null &&
146 146
		   this.targetProjection.getAbrev() != this.sourceProjection.getAbrev()){
147 147
			ICoordTrans trans = targetProjection.getCT(sourceProjection);
148
			rect = trans.convert(rect);
148
			try{
149
				rect = trans.convert(rect);
150
			}catch (NullPointerException e) {
151
				// TODO: handle exception
152
			}
149 153
		}
150 154
		this.rect = rect;
151 155
	}

Also available in: Unified diff