This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 5e84989bf962b8e5d324ae4312ebb7e7d1405ddd Author: juanpablo <[email protected]> AuthorDate: Thu Jan 9 21:10:31 2020 +0100 remove FIXME tag - actually done! :-) --- .../main/java/org/apache/wiki/pages/DefaultPageManager.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/jspwiki-main/src/main/java/org/apache/wiki/pages/DefaultPageManager.java b/jspwiki-main/src/main/java/org/apache/wiki/pages/DefaultPageManager.java index c30113f..324d347 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/pages/DefaultPageManager.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/pages/DefaultPageManager.java @@ -71,18 +71,14 @@ import java.util.concurrent.ConcurrentHashMap; /** - * Manages the WikiPages. This class functions as an unified interface towards - * the page providers. It handles initialization and management of the providers, - * and provides utility methods for accessing the contents. + * Manages the WikiPages. This class functions as an unified interface towards the page providers. It handles initialization + * and management of the providers, and provides utility methods for accessing the contents. * <p/> - * Saving a page is a two-stage Task; first the pre-save operations and then the - * actual save. See the descriptions of the tasks for further information. + * Saving a page is a two-stage Task; first the pre-save operations and then the actual save. See the descriptions of the tasks + * for further information. * * @since 2.0 */ -// FIXME: This class currently only functions just as an extra layer over providers, -// complicating things. We need to move more provider-specific functionality -// from WikiEngine (which is too big now) into this class. public class DefaultPageManager extends ModuleManager implements PageManager { private static final Logger LOG = Logger.getLogger( DefaultPageManager.class );
