summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-03-25 01:46:59 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-25 01:46:59 -0700
commitd8ac8af712820bcecf08a928a3f04753a4c9631e (patch)
treeb5e7d9b458d84d1ebffc6538c5253f872e47a586
parentf050e4d966f1c9ef2c60bcf3c34639ac8a48f4d2 (diff)
Remove obsolete NSLog() debugging.
-rw-r--r--CyteKit/WebViewTableViewCell.mm6
1 files changed, 0 insertions, 6 deletions
diff --git a/CyteKit/WebViewTableViewCell.mm b/CyteKit/WebViewTableViewCell.mm
index 54fecd5..2a0a9a8 100644
--- a/CyteKit/WebViewTableViewCell.mm
+++ b/CyteKit/WebViewTableViewCell.mm
@@ -52,10 +52,6 @@
return cell;
}
-- (void) webView:(WebView *)view addMessageToConsole:(NSDictionary *)message {
- NSLog(@"addMessageToConsole:%@", message);
-}
-
- (id) initWithRequest:request {
if ((self = [super init]) != nil) {
UIView *view(self);
@@ -64,8 +60,6 @@
[webview_ setDelegate:self];
[view addSubview:webview_];
- NSLog(@"%@ %p", (id) webview_, (id) webview_);
-
[webview_ setScalesPageToFit:YES];
UIWebDocumentView *document([webview_ _documentView]);