Skip to content

Commit ab9d1e4

Browse files
Added comment, removed line from test
1 parent 26981b7 commit ab9d1e4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

couchdb/src/main/java/me/retrodaredevil/couchdbjava/CouchDbDatabase.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ public interface CouchDbDatabase extends CouchDbShared {
2929
default boolean createIfNotExists() throws CouchDbException { return createIfNotExists(DatabaseCreationOption.createDefault()); }
3030
void deleteDatabase() throws CouchDbException;
3131

32+
/**
33+
* Note: As of 2023.04.21 this does not work on PouchDB
34+
*/
3235
DatabaseInfo getDatabaseInfo() throws CouchDbException;
3336

3437
/**

couchdb/src/test/java/me/retrodaredevil/couchdbjava/integration/test/RevsLimitTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,5 @@ void test(DatabaseService databaseService) throws CouchDbException {
3737
database.create(DatabaseCreationOption.builder().build());
3838
assertThrows(CouchDbNotFoundException.class, () -> database.getRevsLimit());
3939
}
40-
database.getDatabaseInfo();
4140
}
4241
}

0 commit comments

Comments
 (0)