-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
5.16.0 #76
Conversation
@@ -92,6 +92,7 @@ | |||
DatasetWrapper newDataset = client.getDataset(id); | |||
|
|||
newDataset.addImages(client, images); | |||
newDataset.refresh(client); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
@@ -51,6 +51,7 @@ | |||
|
|||
boolean imported = dataset.importImages(client, 2, f1.getAbsolutePath(), f2.getAbsolutePath()); | |||
client.closeImport(); | |||
dataset.refresh(client); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
@@ -242,7 +242,9 @@ | |||
assertEquals(2, folders.size()); | |||
assertEquals(nImages, image.getROIs(client).size()); | |||
|
|||
for (FolderWrapper f : folders) f.reload(client); | |||
for (FolderWrapper f : folders) { | |||
f.reload(client); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
@@ -64,6 +65,7 @@ | |||
|
|||
int initialSize = project.getDatasets().size(); | |||
project.addDataset(client, dataset); | |||
project.refresh(client); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
@@ -175,6 +175,7 @@ | |||
ScreenWrapper screen = new ScreenWrapper(client, "Import", "test-import"); | |||
|
|||
boolean imported = screen.importImages(client, f1.getAbsolutePath(), f2.getAbsolutePath()); | |||
screen.refresh(client); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #76 +/- ##
============================================
+ Coverage 95.46% 95.49% +0.02%
- Complexity 1154 1210 +56
============================================
Files 45 46 +1
Lines 3064 3238 +174
Branches 244 260 +16
============================================
+ Hits 2925 3092 +167
- Misses 78 85 +7
Partials 61 61
☔ View full report in Codecov by Sentry. |
Kudos, SonarCloud Quality Gate passed! |
No description provided.