Commit 6f64ba16 authored by Kalin Toshev's avatar Kalin Toshev
Browse files

Fixed some whitespaces

parent 8095cc63
......@@ -31,21 +31,21 @@ using System.Collections.Concurrent;
namespace NLua
{
#if USE_KOPILUA
#if USE_KOPILUA
using LuaCore = KopiLua.Lua;
using LuaState = KopiLua.LuaState;
#else
#else
using LuaCore = KeraLua.Lua;
using LuaState = KeraLua.LuaState;
#endif
#endif
internal class ObjectTranslatorPool
{
private static volatile ObjectTranslatorPool instance = new ObjectTranslatorPool ();
private static volatile ObjectTranslatorPool instance = new ObjectTranslatorPool ();
#if WINDOWS_PHONE || NET_3_5
private Dictionary<LuaState, ObjectTranslator> translators = new Dictionary<LuaState, ObjectTranslator>();
#else
private ConcurrentDictionary<LuaState, ObjectTranslator> translators = new ConcurrentDictionary<LuaState, ObjectTranslator>();
private ConcurrentDictionary<LuaState, ObjectTranslator> translators = new ConcurrentDictionary<LuaState, ObjectTranslator>();
#endif
public static ObjectTranslatorPool Instance
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment