From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 95B7E158094 for ; Mon, 11 Jul 2022 04:09:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD3DEE0F3D; Mon, 11 Jul 2022 04:09:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A553E0F3D for ; Mon, 11 Jul 2022 04:09:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF26E3410AC for ; Mon, 11 Jul 2022 04:09:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 285504EC for ; Mon, 11 Jul 2022 04:09:03 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1657512521.b8d4c6c6f7715711e68ea83cffaa208cc70dd7ed.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/java-utils-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b8d4c6c6f7715711e68ea83cffaa208cc70dd7ed X-VCS-Branch: master Date: Mon, 11 Jul 2022 04:09:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1aeff807-0da3-4c33-89d5-202519be4b02 X-Archives-Hash: 802f0f4720b27437c6ccceed64a2fc25 commit: b8d4c6c6f7715711e68ea83cffaa208cc70dd7ed Author: Mike Gilbert gentoo org> AuthorDate: Mon Jul 11 04:08:41 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Jul 11 04:08:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d4c6c6 java-utils-2.eclass: drop pointless eend call Closes: https://bugs.gentoo.org/842675 Signed-off-by: Mike Gilbert gentoo.org> eclass/java-utils-2.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 6576712e0104..4f50ce39c5dc 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -316,7 +316,6 @@ java-pkg_rm_files() { [[ ! -f "${filename}" ]] && die "${filename} is not a regular file. Aborting." einfo "Removing unneeded file ${filename}" rm -f "${S}/${filename}" || die "cannot remove ${filename}" - eend $? done }