From commits-return-6961-archive-asf-public=cust-asf.ponee.io@juneau.apache.org Fri Oct 16 14:27:38 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 79DDE18037A for ; Fri, 16 Oct 2020 16:27:38 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id B64054181B for ; Fri, 16 Oct 2020 14:27:37 +0000 (UTC) Received: (qmail 28245 invoked by uid 500); 16 Oct 2020 14:27:37 -0000 Mailing-List: contact commits-help@juneau.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@juneau.apache.org Delivered-To: mailing list commits@juneau.apache.org Received: (qmail 28236 invoked by uid 99); 16 Oct 2020 14:27:37 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Oct 2020 14:27:37 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id F3F3881786; Fri, 16 Oct 2020 14:27:36 +0000 (UTC) Date: Fri, 16 Oct 2020 14:27:36 +0000 To: "commits@juneau.apache.org" Subject: [juneau] branch master updated: Remove deprecated code. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <160285845676.26096.2797971012806160056@gitbox.apache.org> From: jamesbognar@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: juneau X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 988c7776e8519e2fa82b2ef181997a04d7d6ee2f X-Git-Newrev: 3858884d2f13af18745ae8286ec9dc1245a6c1ef X-Git-Rev: 3858884d2f13af18745ae8286ec9dc1245a6c1ef X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jamesbognar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/juneau.git The following commit(s) were added to refs/heads/master by this push: new 3858884 Remove deprecated code. 3858884 is described below commit 3858884d2f13af18745ae8286ec9dc1245a6c1ef Author: JamesBognar AuthorDate: Fri Oct 16 10:27:31 2020 -0400 Remove deprecated code. --- .../apache/juneau/annotation/UriAnnotation.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java index 84129b0..5cdfa72 100644 --- a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java +++ b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java @@ -13,6 +13,7 @@ package org.apache.juneau.annotation; import java.lang.annotation.*; +import java.lang.reflect.*; import org.apache.juneau.*; @@ -36,5 +37,36 @@ public class UriAnnotation extends TargetedAnnotation.OnClassMethodField impleme } // + + @Override /* GENERATED - TargetedAnnotation */ + public UriAnnotation on(String...value) { + super.on(value); + return this; + } + + @Override /* GENERATED - OnClass */ + public UriAnnotation on(java.lang.Class...value) { + super.on(value); + return this; + } + + @Override /* GENERATED - OnClass */ + public UriAnnotation onClass(java.lang.Class...value) { + super.onClass(value); + return this; + } + + @Override /* GENERATED - OnClassMethodField */ + public UriAnnotation on(Field...value) { + super.on(value); + return this; + } + + @Override /* GENERATED - OnClassMethodField */ + public UriAnnotation on(Method...value) { + super.on(value); + return this; + } + // }