diff jvmci/jdk.vm.ci.services/src/jdk/vm/ci/services/Services.java @ 23297:4b58c92e939b

remove redundant modifiers
author Manuel Rigger <rigger.manuel@gmail.com>
date Tue, 02 Feb 2016 16:19:37 +0100
parents f2206f5bb62e
children 9779df770504
line wrap: on
line diff
--- a/jvmci/jdk.vm.ci.services/src/jdk/vm/ci/services/Services.java	Sun Jan 31 22:39:09 2016 +0100
+++ b/jvmci/jdk.vm.ci.services/src/jdk/vm/ci/services/Services.java	Tue Feb 02 16:19:37 2016 +0100
@@ -69,8 +69,8 @@
     /**
      * Gets an {@link Iterable} of the JVMCI providers available for a given service.
      *
-     * @throws SecurityException if a security manager is present and it denies
-     *             <tt>{@link RuntimePermission}("jvmciServices")</tt>
+     * @throws SecurityException if a security manager is present and it denies <tt>
+     *             {@link RuntimePermission}("jvmciServices")</tt>
      */
     @SuppressWarnings("unchecked")
     public static <S> Iterable<S> load(Class<S> service) {
@@ -91,8 +91,8 @@
      * @param service the service whose provider is being requested
      * @param required specifies if an {@link InternalError} should be thrown if no provider of
      *            {@code service} is available
-     * @throws SecurityException if a security manager is present and it denies
-     *             <tt>{@link RuntimePermission}("jvmciServices")</tt>
+     * @throws SecurityException if a security manager is present and it denies <tt>
+     *             {@link RuntimePermission}("jvmciServices")</tt>
      */
     @SuppressWarnings({"unchecked"})
     public static <S> S loadSingle(Class<S> service, boolean required) {