Skip to content

Commit

Permalink
Tabs to spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreavis committed Jun 28, 2012
1 parent 5fcab1b commit b403e57
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions DIYConduit.m
Expand Up @@ -51,20 +51,20 @@ - (id)init

- (id)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame])
if (self = [super initWithFrame:frame])
{
[self _init];
}
return self;
[self _init];
}
return self;
}

- (id)initWithCoder:(NSCoder *)aDecoder
{
if (self = [super initWithCoder:aDecoder])
if (self = [super initWithCoder:aDecoder])
{
[self _init];
}
return self;
[self _init];
}
return self;
}

#pragma mark - Public methods
Expand All @@ -79,7 +79,7 @@ - (id)initWithCoder:(NSCoder *)aDecoder
- (void)loadRequest:(NSURLRequest *)request
{
[webView loadRequest:[self generateMutableRequestWithRequest:request andHeaders:headers]];
[bridge pushRequestHeaders:headers];
[bridge pushRequestHeaders:headers];
}

/**
Expand Down

0 comments on commit b403e57

Please sign in to comment.