Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove -Watimport-in-framework-header and bump CocoaAsyncSocket #3

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Used by the HTTP server
github "robbiehanson/CocoaAsyncSocket"
github "robbiehanson/CocoaAsyncSocket" "72e0fa9"

# Used by the element cache
github "appium/YYCache"
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "robbiehanson/CocoaAsyncSocket" "7.6.4"
github "appium/YYCache" "1.1.0"
github "robbiehanson/CocoaAsyncSocket" "72e0fa9e62d56e5bbb3f67e9cfd5aa85841735bc"
4 changes: 0 additions & 4 deletions WebDriverAgentLib/Routing/FBTCPSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/

#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif

#import <CocoaAsyncSocket/GCDAsyncSocket.h>

NS_ASSUME_NONNULL_BEGIN
Expand Down
5 changes: 0 additions & 5 deletions WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
#import "DDNumber.h"
#import "DDRange.h"
#import "HTTPLogging.h"

#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif

#import <CocoaAsyncSocket/GCDAsyncSocket.h>

#if ! __has_feature(objc_arc)
Expand Down
5 changes: 0 additions & 5 deletions WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPServer.m
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
#import "HTTPServer.h"
#import "HTTPConnection.h"
#import "HTTPLogging.h"

#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif

#import <CocoaAsyncSocket/GCDAsyncSocket.h>

#if ! __has_feature(objc_arc)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ FOUNDATION_EXPORT const unsigned char RoutingHTTPServerVersionString[];
#import "RouteResponse.h"
#import "RouteRequest.h"
#import "RoutingConnection.h"

#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif

#import <CocoaAsyncSocket/GCDAsyncSocket.h>

typedef void (^RequestHandler)(RouteRequest *request, RouteResponse *response);
Expand Down