This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
The following commit(s) were added to refs/heads/master by this push: new 8e4a10a Formatting. 8e4a10a is described below commit 8e4a10a6695326c1235fb20ac43b1ccf5acc36a1 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Fri Jul 5 18:52:00 2019 -0400 Formatting. --- src/main/java/org/apache/bcel/util/Repository.java | 31 ++++++++-------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/src/main/java/org/apache/bcel/util/Repository.java b/src/main/java/org/apache/bcel/util/Repository.java index 2e4cdcc..60eee30 100644 --- a/src/main/java/org/apache/bcel/util/Repository.java +++ b/src/main/java/org/apache/bcel/util/Repository.java @@ -20,9 +20,8 @@ package org.apache.bcel.util; import org.apache.bcel.classfile.JavaClass; /** - * Abstract definition of a class repository. Instances may be used - * to load classes from different sources and may be used in the - * Repository.setRepository method. + * Abstract definition of a class repository. Instances may be used to load classes from different sources and may be + * used in the Repository.setRepository method. * * @see org.apache.bcel.Repository */ @@ -31,42 +30,34 @@ public interface Repository { /** * Stores the provided class under "clazz.getClassName()" */ - void storeClass( JavaClass clazz ); - + void storeClass(JavaClass clazz); /** * Removes class from repository */ - void removeClass( JavaClass clazz ); - + void removeClass(JavaClass clazz); /** - * Finds the class with the name provided, if the class - * isn't there, return NULL. + * Finds the class with the name provided, if the class isn't there, return NULL. */ - JavaClass findClass( String className ); - + JavaClass findClass(String className); /** - * Finds the class with the name provided, if the class - * isn't there, make an attempt to load it. + * Finds the class with the name provided, if the class isn't there, make an attempt to load it. */ - JavaClass loadClass( String className ) throws java.lang.ClassNotFoundException; - + JavaClass loadClass(String className) throws java.lang.ClassNotFoundException; /** * Finds the JavaClass instance for the given run-time class object */ - JavaClass loadClass( Class<?> clazz ) throws java.lang.ClassNotFoundException; + JavaClass loadClass(Class<?> clazz) throws java.lang.ClassNotFoundException; - - /** + /** * Clears all entries from cache. */ void clear(); - - /** + /** * Gets the ClassPath associated with this Repository */ ClassPath getClassPath();