ferdinalcandra / BFIPOC

0 stars 1 forks source link

Use correct method for URL encoding / decoding #17

Closed timpamungkas closed 3 years ago

timpamungkas commented 3 years ago

On DctmUploadService.java method getAttributeFromDql, you use regex replacement for %20. If you need to encode / decode string for url, why not use proper class (e.g. URLEncoder or URLDecoder from java.net package?

This one :

timpamungkas commented 3 years ago

unused