Huge update to ITFoundation. I've gone through every file (except queue.h
[ITFoundation.git] / ITDebug.m
old mode 100755 (executable)
new mode 100644 (file)
index e7fef2b..a5666aa
--- a/ITDebug.m
+++ b/ITDebug.m
@@ -1,28 +1,16 @@
-/*
- *  ITDebug.m
- *  ITFoundation
- *
- *  Created by Joseph Spiros on Fri Sep 12 2003.
- *  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
- *
- */
-
 #import "ITDebug.h"
 
 static BOOL _ITDebugMode = NO;
 
-void SetITDebugMode (BOOL mode)
-{
-    _ITDebugMode = mode;
+void SetITDebugMode(BOOL mode) {
+       _ITDebugMode = mode;
 }
 
-void ITDebugLog (NSString *format, ...)
-{
-    if ( ( _ITDebugMode == YES ) ) {
-        va_list ap;
-    
-        va_start (ap, format);
-        NSLogv (format, ap);
-        va_end (ap);
-    }
+void ITDebugLog(NSString *format, ...) {
+       if ( ( _ITDebugMode == YES ) ) {
+               va_list ap;
+               va_start (ap, format);
+               NSLogv (format, ap);
+               va_end (ap);
+       }
 }
\ No newline at end of file