Sticky Revision: |
The old code must have been a mistake, because it would have led to a NullPointerException. Eclipse showed me these... Old: if ( sfc != null || sfc.getFeatureCollection().size() > 0 ) { FeatureCollection fc = sfc.getFeatureCollection(); New: if ( sfc != null && sfc.getFeatureCollection().size() > 0 ) { FeatureCollection fc = sfc.getFeatureCollection();
dependency of ADAGIOS library removed
GPL, LGLP copied to source folder
First Commit, corresponds to Revision 1008 of Wikisquare-SVN
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |