You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by vg...@apache.org on 2004/01/28 04:29:04 UTC

cvs commit: xml-xindice/java/src/org/apache/xindice/core DBObserver.java

vgritsenko    2004/01/27 19:29:04

  Modified:    java/src/org/apache/xindice/core DBObserver.java
  Log:
  Remove unused "throws"
  
  Revision  Changes    Path
  1.8       +7 -8      xml-xindice/java/src/org/apache/xindice/core/DBObserver.java
  
  Index: DBObserver.java
  ===================================================================
  RCS file: /home/cvs/xml-xindice/java/src/org/apache/xindice/core/DBObserver.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DBObserver.java	7 Aug 2003 20:13:21 -0000	1.7
  +++ DBObserver.java	28 Jan 2004 03:29:04 -0000	1.8
  @@ -84,19 +84,19 @@
           public void flushDatabaseConfig(Database db, Configuration cfg) {
           }
   
  -        public void dropCollection(Collection col) throws DBException {
  +        public void dropCollection(Collection col) {
           }
   
  -        public void createCollection(Collection col) throws DBException {
  +        public void createCollection(Collection col) {
           }
   
  -        public void putDocument(Collection col, Key key, Document document, boolean create) throws DBException {
  +        public void putDocument(Collection col, Key key, Document document, boolean create) {
           }
   
  -        public void loadDocument(Collection col, Record record, Document document) throws DBException {
  +        public void loadDocument(Collection col, Record record, Document document) {
           }
   
  -        public void dropDocument(Collection col, Key key) throws DBException {
  +        public void dropDocument(Collection col, Key key) {
           }
       };
   
  @@ -155,5 +155,4 @@
        * Called before Collection.remove(key)
        */
       public abstract void dropDocument(Collection col, Key key) throws DBException;
  -
   }