Skip to content

Commit

Permalink
remove some leftover logs
Browse files Browse the repository at this point in the history
  • Loading branch information
opa334 committed Oct 29, 2022
1 parent 029a80f commit 28a644e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions TrollStore/TSSceneDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ - (void)handleURLContexts:(NSSet<UIOpenURLContext*>*)URLContexts scene:(UIWindow
{
for(UIOpenURLContext* context in URLContexts)
{
NSLog(@"openURLContexts %@", context.URL);
NSURL* url = context.URL;

if(url)
{
NSLog(@"ts_test url: %@", url);
NSLog(@"ts_test url.scheme: %@", url.scheme);
if([url isFileURL])
{
[url startAccessingSecurityScopedResource];
Expand Down Expand Up @@ -57,7 +54,6 @@ - (void)handleURLContexts:(NSSet<UIOpenURLContext*>*)URLContexts scene:(UIWindow

for(NSURLQueryItem* queryItem in components.queryItems)
{
NSLog(@"ts_test queryItem %@ = %@", queryItem.name, queryItem.value);
if([queryItem.name isEqualToString:@"url"])
{
URLStringToInstall = queryItem.value;
Expand All @@ -82,7 +78,6 @@ - (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session op
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).

NSLog(@"scene:%@ willConnectToSession:%@ options:%@", scene, session, connectionOptions);
UIWindowScene* windowScene = (UIWindowScene*)scene;
_window = [[UIWindow alloc] initWithWindowScene:windowScene];
_rootViewController = [[TSRootViewController alloc] init];
Expand Down Expand Up @@ -130,7 +125,6 @@ - (void)sceneDidEnterBackground:(UIScene *)scene {

- (void)scene:(UIScene *)scene openURLContexts:(NSSet<UIOpenURLContext *> *)URLContexts
{
NSLog(@"scene:%@ openURLContexts:%@", scene, URLContexts);
[self handleURLContexts:URLContexts scene:(UIWindowScene*)scene];
}

Expand Down

0 comments on commit 28a644e

Please sign in to comment.