Merge pull request #4421 from rcordovano/ig-deadlock-fix

Remove unnecessary, dead locking synch from ImageGalleryController
This commit is contained in:
Richard Cordovano 2018-12-23 18:10:18 -05:00 committed by GitHub
commit c879b523d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -553,14 +553,12 @@ public final class ImageGalleryController {
return dbTaskQueueSize.getReadOnlyProperty();
}
public synchronized SleuthkitCase getSleuthKitCase() {
public SleuthkitCase getSleuthKitCase() {
return sleuthKitCase;
}
public ThumbnailCache getThumbsCache() {
return thumbnailCache;
}
/**