Skip to content

Commit 5c98172

Browse files
committed
Fix warnings
1 parent 9c071cc commit 5c98172

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ carthage:
88
carthage build --no-skip-current
99

1010
lint:
11-
pod lib lint --allow-warnings
11+
pod lib lint
1212

1313
analyze:
1414
xcodebuild clean analyze -destination ${PLATFORM} -sdk ${SDK} -project PINOperation.xcodeproj -scheme PINOperation \

PINOperation.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.requires_arc = true
1010
s.frameworks = 'Foundation'
1111
s.ios.deployment_target = '5.0'
12-
s.osx.deployment_target = '10.7'
12+
s.osx.deployment_target = '10.8'
1313
s.tvos.deployment_target = '9.0'
1414
s.watchos.deployment_target = '2.0'
1515
pch_PIN = <<-EOS

Source/PINOperationQueue.h

-4
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ PINOP_SUBCLASSING_RESTRICTED
5757
*
5858
* @param operation The operation object to be added to the queue.
5959
* @param priority The execution priority of the operation in an operation queue.
60-
*
61-
* @discussion
6260
*/
6361
- (id <PINOperationReference>)scheduleOperation:(dispatch_block_t)operation withPriority:(PINOperationQueuePriority)priority;
6462

@@ -71,8 +69,6 @@ PINOP_SUBCLASSING_RESTRICTED
7169
* @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.
7270
* @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.
7371
* @param completion The block to execute after the operation finished.
74-
*
75-
* @discussion
7672
*/
7773
- (id <PINOperationReference>)scheduleOperation:(PINOperationBlock)operation
7874
withPriority:(PINOperationQueuePriority)priority

0 commit comments

Comments
 (0)