From ed0a6157437b85becf37d4df65e27ef992904f8f Mon Sep 17 00:00:00 2001 From: Brian Moyles Date: Mon, 21 May 2012 16:59:22 -0700 Subject: [PATCH] getViews here could also probably drop synchronized --- core/src/main/java/hudson/model/ListView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/model/ListView.java b/core/src/main/java/hudson/model/ListView.java index 581ef35b27..8c8a5e44c2 100644 --- a/core/src/main/java/hudson/model/ListView.java +++ b/core/src/main/java/hudson/model/ListView.java @@ -134,7 +134,7 @@ public class ListView extends View implements Saveable { * This method returns a separate copy each time to avoid * concurrent modification issue. */ - public synchronized List getItems() { + public List getItems() { SortedSet names = new TreeSet(jobNames); if (includePattern != null) { -- GitLab