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 9002F200B76 for ; Mon, 25 Jul 2016 17:30:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8EC06160A7D; Mon, 25 Jul 2016 15:30:37 +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 C53D0160A95 for ; Mon, 25 Jul 2016 17:30:36 +0200 (CEST) Received: (qmail 69242 invoked by uid 500); 25 Jul 2016 15:30:35 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 69019 invoked by uid 99); 25 Jul 2016 15:30:35 -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; Mon, 25 Jul 2016 15:30:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 71DD4E00A7; Mon, 25 Jul 2016 15:30:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dkulp@apache.org To: commits@cxf.apache.org Date: Mon, 25 Jul 2016 15:30:39 -0000 Message-Id: <1a3c521cf3ae41149967e4d7c5dc9afc@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [05/14] cxf git commit: Fix unused imports archived-at: Mon, 25 Jul 2016 15:30:37 -0000 Fix unused imports Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/12049c41 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/12049c41 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/12049c41 Branch: refs/heads/3.0.x-fixes Commit: 12049c41f9d3f157bf1f9d9ecd301d7d3a6a8e48 Parents: c65d8ee Author: Daniel Kulp Authored: Tue May 17 12:24:18 2016 -0400 Committer: Daniel Kulp Committed: Mon Jul 25 10:16:50 2016 -0400 ---------------------------------------------------------------------- .../test/java/org/apache/cxf/binding/soap/saaj/ParseBodyTest.java | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/12049c41/rt/bindings/soap/src/test/java/org/apache/cxf/binding/soap/saaj/ParseBodyTest.java ---------------------------------------------------------------------- diff --git a/rt/bindings/soap/src/test/java/org/apache/cxf/binding/soap/saaj/ParseBodyTest.java b/rt/bindings/soap/src/test/java/org/apache/cxf/binding/soap/saaj/ParseBodyTest.java index 1f6eeb4..c6b2087 100644 --- a/rt/bindings/soap/src/test/java/org/apache/cxf/binding/soap/saaj/ParseBodyTest.java +++ b/rt/bindings/soap/src/test/java/org/apache/cxf/binding/soap/saaj/ParseBodyTest.java @@ -30,7 +30,6 @@ import javax.xml.soap.SOAPMessage; import javax.xml.soap.SOAPPart; import javax.xml.stream.XMLStreamReader; import javax.xml.stream.XMLStreamWriter; -import javax.xml.transform.Source; import javax.xml.transform.dom.DOMSource; import org.w3c.dom.Document; @@ -40,7 +39,6 @@ import org.apache.cxf.helpers.DOMUtils.NullResolver; import org.apache.cxf.message.Exchange; import org.apache.cxf.message.ExchangeImpl; import org.apache.cxf.message.MessageImpl; -import org.apache.cxf.staxutils.StaxSource; import org.apache.cxf.staxutils.StaxUtils; import org.junit.Assert; import org.junit.Test;