summaryrefslogtreecommitdiff
path: root/js/xpconnect/shell/xpcshellMacUtils.mm
diff options
context:
space:
mode:
Diffstat (limited to 'js/xpconnect/shell/xpcshellMacUtils.mm')
-rw-r--r--js/xpconnect/shell/xpcshellMacUtils.mm18
1 files changed, 0 insertions, 18 deletions
diff --git a/js/xpconnect/shell/xpcshellMacUtils.mm b/js/xpconnect/shell/xpcshellMacUtils.mm
deleted file mode 100644
index 61d6a9ea9a..0000000000
--- a/js/xpconnect/shell/xpcshellMacUtils.mm
+++ /dev/null
@@ -1,18 +0,0 @@
-/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-#include <Foundation/Foundation.h>
-
-static NSAutoreleasePool *pool = NULL;
-
-void InitAutoreleasePool()
-{
- pool = [[NSAutoreleasePool alloc] init];
-}
-
-void FinishAutoreleasePool()
-{
- [pool release];
-}