You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2019/12/06 22:43:37 UTC

[jspwiki] 09/14: format interface

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 ef5fb049818b7d3fcd9ace54a67ec177b65ff554
Author: juanpablo <ju...@apache.org>
AuthorDate: Fri Dec 6 23:25:08 2019 +0100

    format interface
---
 jspwiki-main/src/main/java/org/apache/wiki/WikiProvider.java | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/jspwiki-main/src/main/java/org/apache/wiki/WikiProvider.java b/jspwiki-main/src/main/java/org/apache/wiki/WikiProvider.java
index ae3460c..d9e6f45 100644
--- a/jspwiki-main/src/main/java/org/apache/wiki/WikiProvider.java
+++ b/jspwiki-main/src/main/java/org/apache/wiki/WikiProvider.java
@@ -18,11 +18,11 @@
  */
 package org.apache.wiki;
 
-import java.util.Properties;
-import java.io.IOException;
-
 import org.apache.wiki.api.exceptions.NoRequiredPropertyException;
 
+import java.io.IOException;
+import java.util.Properties;
+
 
 /**
  *  A generic Wiki provider for all sorts of things that the Wiki can
@@ -45,9 +45,7 @@ public interface WikiProvider
      *  @throws NoRequiredPropertyException If the provider needs a property which is not found in the property set
      *  @throws IOException If there is an IO problem
      */
-    void initialize( WikiEngine engine, Properties properties )
-        throws NoRequiredPropertyException,
-               IOException;
+    void initialize( WikiEngine engine, Properties properties ) throws NoRequiredPropertyException, IOException;
 
     /**
      *  Return a valid HTML string for information.  May be anything.