Skip to content

Commit

Permalink
fix embeded framework
Browse files Browse the repository at this point in the history
  • Loading branch information
jstorm31 committed Oct 2, 2019
1 parent 3e6a3a4 commit e2337a2
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
github "SnapKit/SnapKit" ~> 5.0.1
github "OAuthSwift/OAuthSwift" ~> 1.2.0
github "ReactiveX/RxSwift" ~> 5.0.0
github "RxSwiftCommunity/RxDataSources" ~> 4.0.1
github "RxSwiftCommunity/Action" ~> 4.0.1
github "RxSwiftCommunity/RxBiBinding"
Expand Down
2 changes: 0 additions & 2 deletions Grades.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,6 @@
96C61EE3233CB9E200EA0FB2 /* SwitchCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwitchCell.swift; sourceTree = "<group>"; };
96C61EE5233CBB7E00EA0FB2 /* UIPrimarySwitch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIPrimarySwitch.swift; sourceTree = "<group>"; };
96C61EE7233CBD8E00EA0FB2 /* PickerCellViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickerCellViewModel.swift; sourceTree = "<group>"; };
96C61EEF233CE9E600EA0FB2 /* RxBiBinding.framework.dSYM */ = {isa = PBXFileReference; lastKnownFileType = wrapper.dsym; name = RxBiBinding.framework.dSYM; path = Carthage/Build/iOS/RxBiBinding.framework.dSYM; sourceTree = "<group>"; };
96C61EF1233CE9F800EA0FB2 /* RxBiBinding.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxBiBinding.framework; path = Carthage/Build/iOS/RxBiBinding.framework; sourceTree = "<group>"; };
96C61EF3233CEA9E00EA0FB2 /* SwitchCellViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwitchCellViewModel.swift; sourceTree = "<group>"; };
96C61EF5233CF3C800EA0FB2 /* RxRelay.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxRelay.framework; path = Carthage/Build/iOS/RxRelay.framework; sourceTree = "<group>"; };
Expand Down Expand Up @@ -689,7 +688,6 @@
children = (
96C61EF5233CF3C800EA0FB2 /* RxRelay.framework */,
96C61EF1233CE9F800EA0FB2 /* RxBiBinding.framework */,
96C61EEF233CE9E600EA0FB2 /* RxBiBinding.framework.dSYM */,
962A67A3229521B9008CF643 /* Sentry.framework */,
968EC1D22282DC1100241F51 /* SwiftKeychainWrapper.framework */,
96F220DE227B67670078AD2A /* Swifter.framework */,
Expand Down
1 change: 0 additions & 1 deletion Grades/View/Cell/DynamicValueCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ final class DynamicValueCell: BasicCell, ConfigurableCell {

private func bindOutput() {
valueTextField.rx.text
.debug()
.skip(1)
.unwrap()
.debounce(.seconds(1), scheduler: MainScheduler.instance)
Expand Down
1 change: 0 additions & 1 deletion Grades/ViewModel/SettingsViewModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ final class SettingsViewModel: TablePickerViewModel {
UserDefaults.standard.removeObject(forKey: Constants.courseFilters)

return self.dependencies.pushNotificationsService.unregisterUserFromDevice()
.debug()
.do(onNext: { [weak self] in
self?.dependencies.coordinator.popToRoot(animated: true)
}, onError: { [weak self] error in
Expand Down

0 comments on commit e2337a2

Please sign in to comment.