1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 08:30:25 +02:00

Fixed object initializer warnings

This commit is contained in:
Brian Fiete 2020-08-29 11:56:10 -07:00
parent 10421d99ca
commit f795215b44
13 changed files with 48 additions and 48 deletions

View file

@ -133,15 +133,15 @@ namespace IDE.ui
typeName.Clear(); typeName.Append(optionsName, "mRuntimeChecks");
AddPropertiesItem(category, "Runtime Checks", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mEmitDynamicCastCheck");
AddPropertiesItem(category, "Dynamic Cast Check", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mEmitObjectAccessCheck");
AddPropertiesItem(category, "Object Access Check", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mAllocStackTraceDepth");
AddPropertiesItem(category, "Alloc Stack Trace Depth", typeName);
@ -153,23 +153,23 @@ namespace IDE.ui
typeName.Clear(); typeName.Append(optionsName, "mReflectStaticFields");
AddPropertiesItem(reflectItem, "Static Fields", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mReflectNonStaticFields");
AddPropertiesItem(reflectItem, "Non-Static Fields", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mReflectStaticMethods");
AddPropertiesItem(reflectItem, "Static Methods", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mReflectNonStaticMethods");
AddPropertiesItem(reflectItem, "Non-Static Methods", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mReflectConstructors");
AddPropertiesItem(reflectItem, "Constructors", typeName,
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
typeName.Clear(); typeName.Append(optionsName, "mReflectMethodFilter");
AddPropertiesItem(reflectItem, "Method Filter", typeName);