Skip to content

Commit dd56b29

Browse files
Issue 43380: ImportDataCommand missing options supported by the query-import.api endpoint (#22)
1 parent 3fed335 commit dd56b29

File tree

3 files changed

+444
-21
lines changed

3 files changed

+444
-21
lines changed

labkey-client-api/src/org/labkey/remoteapi/Connection.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,11 @@ public Connection(String baseUrl, CredentialsProvider credentialsProvider)
173173
* Constructs a new Connection object with a base URL that attempts authentication via .netrc/_netrc entry, if present.
174174
* If not present, connects as guest.
175175
* @param baseUrl The base URL
176-
* @throws URISyntaxException if the given url is not a valid URI
177176
* @throws IOException if there are problems reading the credentials
178177
* @see NetrcCredentialsProvider
179178
* @see #Connection(URI, CredentialsProvider)
180179
*/
181-
public Connection(String baseUrl) throws URISyntaxException, IOException
180+
public Connection(String baseUrl) throws IOException
182181
{
183182
this(toURI(baseUrl), new NetrcCredentialsProvider(toURI(baseUrl)));
184183
}

0 commit comments

Comments
 (0)