mapfish / mapfish-print-v2

MapFish Print allows printing maps as PDFs and is used by mapfish.org, geoserver extension and core-genet work.
http://www.mapfish.org/doc/print/
GNU General Public License v3.0
0 stars 11 forks source link

MapPrinterServlet - fix string comparison #9

Closed pmauduit closed 3 months ago

pmauduit commented 2 years ago

The test should probably be a .equals() here

Anyway, testing different scenarios, I had some very weird results: where I was expecting the test to always evalute to false, I had a case where the condition resolved to true:

There is probably some string interning black magick taking place over here, but at least we should reach the expected behaviour using equals instead of the "==" operator.