Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D4B78200B56 for ; Fri, 15 Jul 2016 15:18:31 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D34B1160A61; Fri, 15 Jul 2016 13:18:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4D903160A6C for ; Fri, 15 Jul 2016 15:18:31 +0200 (CEST) Received: (qmail 31832 invoked by uid 500); 15 Jul 2016 13:18:29 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 31526 invoked by uid 99); 15 Jul 2016 13:18:29 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Jul 2016 13:18:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0C8AADFF46; Fri, 15 Jul 2016 13:18:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: lukaszlenart@apache.org To: commits@struts.apache.org Date: Fri, 15 Jul 2016 13:18:30 -0000 Message-Id: <9d5904ed38244e15af347a80c82d02cb@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [03/50] [abbrv] struts git commit: fix for WW-4573 archived-at: Fri, 15 Jul 2016 13:18:32 -0000 fix for WW-4573 NPE/ concurrent modification exception using a CopyOnWriteArrayList. This is to keep Memory consistency on the ValueStack. Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/8d4bb890 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/8d4bb890 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/8d4bb890 Branch: refs/heads/master Commit: 8d4bb890abb004a70a539ad4a3d0fc51dd53b407 Parents: 3a29bc3 Author: Victor Sosa Authored: Sat Jan 2 15:18:37 2016 -0400 Committer: Lukasz Lenart Committed: Tue Jan 19 16:17:09 2016 +0100 ---------------------------------------------------------------------- core/src/main/java/com/opensymphony/xwork2/util/CompoundRoot.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/8d4bb890/core/src/main/java/com/opensymphony/xwork2/util/CompoundRoot.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/com/opensymphony/xwork2/util/CompoundRoot.java b/core/src/main/java/com/opensymphony/xwork2/util/CompoundRoot.java index e548a00..49b47da 100644 --- a/core/src/main/java/com/opensymphony/xwork2/util/CompoundRoot.java +++ b/core/src/main/java/com/opensymphony/xwork2/util/CompoundRoot.java @@ -15,7 +15,6 @@ */ package com.opensymphony.xwork2.util; -import java.util.ArrayList; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList;