findbugs: moved call on static object to synchronized block(cherry picked from commit f3529a19a9aad36dbd92e311018643629f19c748)
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/60e8d131 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/60e8d131 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/60e8d131 Branch: refs/heads/ui-restyle Commit: 60e8d131cf27834f4cbbcbccf0174a273cd570c3 Parents: 9eae5f6 Author: Daan Hoogland <d...@onecht.net> Authored: Tue Jan 28 14:14:47 2014 +0100 Committer: Daan Hoogland <dhoogl...@schubergphilis.com> Committed: Tue Jan 28 14:14:47 2014 +0100 ---------------------------------------------------------------------- server/src/com/cloud/api/ApiDispatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/60e8d131/server/src/com/cloud/api/ApiDispatcher.java ---------------------------------------------------------------------- diff --git a/server/src/com/cloud/api/ApiDispatcher.java b/server/src/com/cloud/api/ApiDispatcher.java index 9f4f766..55ef53a 100755 --- a/server/src/com/cloud/api/ApiDispatcher.java +++ b/server/src/com/cloud/api/ApiDispatcher.java @@ -427,8 +427,8 @@ public class ApiDispatcher { } } else { DateFormat format = BaseCmd.INPUT_FORMAT; - format.setLenient(false); synchronized (format) { + format.setLenient(false); field.set(cmdObj, format.parse(paramObj.toString())); } }