Skip to content

Commit

Permalink
Access modifier changes
Browse files Browse the repository at this point in the history
Changed internal to public in multiple spots
  • Loading branch information
ecrichlow committed Apr 30, 2023
1 parent 3532c79 commit 2a3b33d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,17 +214,17 @@ public class IoGDataManager
}
}

@discardableResult internal func transmitRequest(request: URLRequest, type: IoGDataRequestType) -> Int
@discardableResult public func transmitRequest(request: URLRequest, type: IoGDataRequestType) -> Int
{
return 0
}

@discardableResult internal func transmitRequest(request: URLRequest, customTypeIdentifier: CustomDataRequestType) -> Int
@discardableResult public func transmitRequest(request: URLRequest, customTypeIdentifier: CustomDataRequestType) -> Int
{
return 0
}

internal func cancelRequest(targetRequestID: Int)
public func cancelRequest(targetRequestID: Int)
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ public class IoGDataRequestResponse : NSObject
{
}

internal func continueMultiPartRequest()
public func continueMultiPartRequest()
{
}

internal func cancelRequest()
public func cancelRequest()
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public class IoGLiveDataRequestResponse : IoGDataRequestResponse, URLSessionDele
}

// When continuing a request for subsequent pages, target and callback always stay the same. Just URL changes for incrementing the page number
override internal func continueMultiPartRequest()
override public func continueMultiPartRequest()
{
if let request = requestInfo[IoGConfigurationManager.requestResponseKeyRequest] as? URLRequest
{
Expand Down Expand Up @@ -119,7 +119,7 @@ public class IoGLiveDataRequestResponse : IoGDataRequestResponse, URLSessionDele
}
}

override internal func cancelRequest()
override public func cancelRequest()
{
dataTask?.cancel()
}
Expand Down

0 comments on commit 2a3b33d

Please sign in to comment.