Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmoon committed Oct 7, 2017
1 parent 9c071cc commit 5c98172
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ carthage:
carthage build --no-skip-current

lint:
pod lib lint --allow-warnings
pod lib lint

analyze:
xcodebuild clean analyze -destination ${PLATFORM} -sdk ${SDK} -project PINOperation.xcodeproj -scheme PINOperation \
Expand Down
2 changes: 1 addition & 1 deletion PINOperation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.frameworks = 'Foundation'
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.osx.deployment_target = '10.8'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
pch_PIN = <<-EOS
Expand Down
4 changes: 0 additions & 4 deletions Source/PINOperationQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ PINOP_SUBCLASSING_RESTRICTED
*
* @param operation The operation object to be added to the queue.
* @param priority The execution priority of the operation in an operation queue.
*
* @discussion
*/
- (id <PINOperationReference>)scheduleOperation:(dispatch_block_t)operation withPriority:(PINOperationQueuePriority)priority;

Expand All @@ -71,8 +69,6 @@ PINOP_SUBCLASSING_RESTRICTED
* @param coalescingData The optional data consumed by this operation that needs to be updated/coalesced with data of a new operation when coalescing the two operations happens.
* @param dataCoalescingBlock The optional block called to update/coalesce the data of this operation with data of a new operation when coalescing the two operations happens.
* @param completion The block to execute after the operation finished.
*
* @discussion
*/
- (id <PINOperationReference>)scheduleOperation:(PINOperationBlock)operation
withPriority:(PINOperationQueuePriority)priority
Expand Down

0 comments on commit 5c98172

Please sign in to comment.