Google.VersionHandler.FileMetadata.GetBlackList C# (CSharp) Method

GetBlackList() static private method

static private GetBlackList ( ) : HashSet
return HashSet
        static HashSet<BuildTarget> GetBlackList() {
            if (targetBlackList == null) {
                targetBlackList = new HashSet<BuildTarget>();
                if (GetUnityVersionMajorMinor() >= 5.5) {
                    targetBlackList.Add(BuildTarget.PS3);
                    targetBlackList.Add(BuildTarget.XBOX360);
                }
            }
            return targetBlackList;
        }