From ea1f1d527dfe47a928360ec4aa715cf3194988b8 Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Tue, 24 Jun 2014 10:46:08 -0700 Subject: [PATCH] 8048014: Update java.lang.SafeVararags for private methods Reviewed-by: lancea, abuckley --- jdk/src/share/classes/java/lang/SafeVarargs.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jdk/src/share/classes/java/lang/SafeVarargs.java b/jdk/src/share/classes/java/lang/SafeVarargs.java index 6fcd48e97d7..9f49bf7a73f 100644 --- a/jdk/src/share/classes/java/lang/SafeVarargs.java +++ b/jdk/src/share/classes/java/lang/SafeVarargs.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -45,7 +45,7 @@ import java.lang.annotation.*; *
  • the declaration is a fixed arity method or constructor * *
  • the declaration is a variable arity method that is neither - * {@code static} nor {@code final}. + * {@code static} nor {@code final} nor {@code private}. * * *