Merge pull request #5518 from rcordovano/public-api-adjustments

Make Case.deleteDataSourceFromCurrentCase package access
This commit is contained in:
Richard Cordovano 2019-12-18 18:34:11 -05:00 committed by GitHub
commit ffc94b7975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -761,7 +761,7 @@ public class Case {
@Messages({ @Messages({
"Case.progressIndicatorTitle.deletingDataSource=Removing Data Source" "Case.progressIndicatorTitle.deletingDataSource=Removing Data Source"
}) })
public static void deleteDataSourceFromCurrentCase(Long dataSourceObjectID) throws CaseActionException { static void deleteDataSourceFromCurrentCase(Long dataSourceObjectID) throws CaseActionException {
synchronized (caseActionSerializationLock) { synchronized (caseActionSerializationLock) {
if (null == currentCase) { if (null == currentCase) {
return; return;