Skip to content

Commit c5899db

Browse files
author
Norman Jordan
committed
Exposed two methods for subclasses
1 parent 30bf479 commit c5899db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/software/amazon/documentdb/jdbc/metadata/DocumentDbMetadataServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ private DocumentDbSchema getNewDatabaseMetadata(
297297
*
298298
* @return a map of the collection metadata.
299299
*/
300-
private DocumentDbSchema getCollectionMetadataDirect(
300+
protected DocumentDbSchema getCollectionMetadataDirect(
301301
final String schemaName,
302302
final int schemaVersion,
303303
final String databaseName,
@@ -335,7 +335,7 @@ private DocumentDbSchema getCollectionMetadataDirect(
335335
}
336336
}
337337

338-
private List<String> getFilteredCollectionNames(final MongoDatabase database) {
338+
protected List<String> getFilteredCollectionNames(final MongoDatabase database) {
339339
final Iterable<String> collectionNames = database.listCollectionNames();
340340
return StreamSupport
341341
.stream(collectionNames.spliterator(), false)

0 commit comments

Comments
 (0)