You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2022/02/26 10:13:10 UTC

[jackrabbit-filevault] branch master updated: fix javadoc

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git


The following commit(s) were added to refs/heads/master by this push:
     new 2997569  fix javadoc
2997569 is described below

commit 2997569a8eb6712c63a4fa338a979af283d36321
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Sat Feb 26 11:13:02 2022 +0100

    fix javadoc
---
 .../java/org/apache/jackrabbit/vault/fs/impl/io/DocViewAdapter.java   | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/impl/io/DocViewAdapter.java b/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/impl/io/DocViewAdapter.java
index e61475a..e542f0a 100644
--- a/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/impl/io/DocViewAdapter.java
+++ b/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/impl/io/DocViewAdapter.java
@@ -21,7 +21,6 @@ import java.util.List;
 import javax.jcr.RepositoryException;
 
 import org.apache.jackrabbit.vault.util.DocViewNode2;
-import org.xml.sax.SAXException;
 
 /**
  * {@code DocViewAdapter} is used by the {@link org.apache.jackrabbit.vault.fs.impl.io.DocViewImporter} to handle
@@ -34,21 +33,18 @@ public interface DocViewAdapter {
     /**
      * Start node is invoked when the importer descends into an element.
      * @param node the node
-     * @throws SAXException if a parsing error occurs.
      * @throws RepositoryException if a import exception occurs.
      */
     void startNode(DocViewNode2 node) throws RepositoryException;
 
     /**
      * Ends node is invoked when the importer ascends from an element.
-     * @throws SAXException if a parsing error occurs.
      * @throws RepositoryException if a import exception occurs.
      */
     void endNode() throws RepositoryException;
 
     /**
      * Is called by the importer if the adapter is no longer used and must finalize the import.
-     * @throws SAXException if a parsing error occurs.
      * @throws RepositoryException if a import exception occurs.
      * @return The paths that were created.
      */