Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ public class DatabricksVolumeClientFactory {
/**
* Creates an instance of the DatabricksUCVolumeClient from the given connection.
*
* @param con Connection
* @param con Connection (must not be null)
* @return an instance of {@link IDatabricksVolumeClient}
* @throws IllegalArgumentException if con is null
*/
public static IDatabricksVolumeClient getVolumeClient(Connection con) {
if (con == null) {
throw new IllegalArgumentException("Connection must not be null");
}
LOGGER.debug(
String.format(
"Entering public static IDatabricksVolumeClient getVolumeClient with Connection con = {%s}",
Expand Down
Loading
Loading