donaldp 2002/07/06 20:30:21 Modified: all/src/scratchpad/org/apache/avalon/excalibur/i18n BundleSelector.java Log: Remove some javadoc errors Revision Changes Path 1.16 +1 -30 jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/BundleSelector.java Index: BundleSelector.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/BundleSelector.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- BundleSelector.java 10 May 2002 02:51:13 -0000 1.15 +++ BundleSelector.java 7 Jul 2002 03:30:21 -0000 1.16 @@ -64,12 +64,6 @@ /** * Select a bundle based on bundle name and locale. - * - * @param name bundle name - * @param locale locale - * @param cacheAtStartup cache all the keys when constructing? - * @return the bundle - * @throws ComponentException if a bundle is not found */ public Component select( Object hint ) throws ComponentException { @@ -94,12 +88,6 @@ /** * Select a bundle based on bundle name and locale. - * - * @param name bundle name - * @param locale locale - * @param cacheAtStartup cache all the keys when constructing? - * @return the bundle - * @throws ComponentException if a bundle is not found */ private Component select( BundleInfo bundleInfo ) { @@ -187,29 +175,16 @@ /** * Selects a bundle from the cache. * - * @param fileName file name of the bundle * @return the cached bundle; null, if not found */ protected Component selectCached( BundleInfo bundleInfo ) { return (Component)cache.get( bundleInfo ); - /* - Component bundle = null; - try { - bundle = super.select(bundleInfo); - if (getLogger().isDebugEnabled()) getLogger().debug("returning from cache: " + bundleInfo); - } - catch (ComponentException e) { - if (getLogger().isDebugEnabled()) getLogger().debug("not found in cache: " + bundleInfo); - } - return bundle; - */ } /** * Checks if the bundle is in the "not-found" cache. * - * @param fileName file name of the bundle * @return true, if the bundle wasn't found already before; * otherwise, false. */ @@ -229,10 +204,6 @@ /** * Checks if the bundle is in the "not-found" cache. - * - * @param fileName file name of the bundle - * @return true, if the bundle wasn't found already before; - * otherwise, false. */ protected void updateCache( BundleInfo bundleInfo, Bundle bundle ) {
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>