fitnessjiffy-spring icon indicating copy to clipboard operation
fitnessjiffy-spring copied to clipboard

Uses of SimpleDateFormat without synchronization

Open DamianFekete opened this issue 9 years ago • 0 comments

The dateFormat field from AbstractController.java is used in controllers without thread synchronization.

Synchronization Date formats are not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.

DamianFekete avatar Feb 25 '16 10:02 DamianFekete