summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-08-17 12:10:12 -0400
committerNicoleYarroch <nicole@livio.io>2020-08-17 12:10:12 -0400
commit6103050eec261b5efd50ffa06e9506094ad59660 (patch)
tree415b75c669f69ed159929dcf0bcce227587ee7a1
parenta1120f0c11628d3f320fd65703e293cf5af3a84e (diff)
downloadsdl_ios-6103050eec261b5efd50ffa06e9506094ad59660.tar.gz
Change fileprivate to private
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--Example Apps/Example Swift/ButtonManager.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Example Apps/Example Swift/ButtonManager.swift b/Example Apps/Example Swift/ButtonManager.swift
index 890a0ddb4..19549a1bb 100644
--- a/Example Apps/Example Swift/ButtonManager.swift
+++ b/Example Apps/Example Swift/ButtonManager.swift
@@ -32,11 +32,11 @@ class ButtonManager: NSObject {
}
}
- fileprivate var isSubtleAlertAllowed: Bool {
+ private var isSubtleAlertAllowed: Bool {
return self.sdlManager.permissionManager.isRPCNameAllowed(SDLRPCFunctionName.subtleAlert)
}
- fileprivate var isAlertAllowed: Bool {
+ private var isAlertAllowed: Bool {
return self.sdlManager.permissionManager.isRPCNameAllowed(SDLRPCFunctionName.alert)
}