@@ -143,7 +143,7 @@ public AndroidAbis(IEnumerable<string> abisSet) {
143143 /// <summary>
144144 /// Create a set of ABIs from a comma separated set of ABI strings.
145145 /// </summary>
146- /// <param name="abisSet">Set of ABI strings.</param>
146+ /// <param name="abiString">Comma separated set of ABI strings.</param>
147147 public AndroidAbis ( string abiString ) {
148148 if ( String . IsNullOrEmpty ( abiString ) ) {
149149 abis = new HashSet < string > ( Supported ) ;
@@ -190,7 +190,7 @@ public override bool Equals(System.Object obj) {
190190 /// Get the supported set of Android ABIs for the current Unity version.
191191 /// The dictionary maps the official Android ABI name (i.e the directory name looked up by the
192192 /// operating system) to the UnityEditor.AndroidTargetDevice (Unity 5.x & 2017.x) or
193- // UnityEditor.AndroidArchitecture enumeration value name.
193+ /// UnityEditor.AndroidArchitecture enumeration value name.
194194 /// </summary>
195195 private static Dictionary < string , string > SupportedAbiToAbiEnumValue {
196196 get { return PropertyConfiguration . Instance . SupportedAbiToAbiEnumValue ; }
@@ -221,10 +221,10 @@ public static IEnumerable<string> AllSupported {
221221 /// </summary>
222222 /// <param name="enumValueObject">Enum object to convert.</param>
223223 private static ulong EnumValueObjectToULong ( object enumValueObject ) {
224- /// Flags enum values can't be cast directly to an integral type, however it is possible to
225- /// print the value as an integer string so convert to a string and then parse as an int.
226- /// Enums are considered unsigned by the formatter, so if an enum is defined as -1 it will
227- /// be formatted as UInt32.MaxValue, i.e. 4294967295.
224+ // Flags enum values can't be cast directly to an integral type, however it is possible to
225+ // print the value as an integer string so convert to a string and then parse as an int.
226+ // Enums are considered unsigned by the formatter, so if an enum is defined as -1 it will
227+ // be formatted as UInt32.MaxValue, i.e. 4294967295.
228228 return UInt64 . Parse ( String . Format ( "{0:D}" , enumValueObject ) ) ;
229229 }
230230
@@ -240,7 +240,7 @@ private static ulong EnumValueStringToULong(Type enumType, string enumValueStrin
240240 /// <summary>
241241 /// Get / set the target device ABI (Unity >= 5.0.x)
242242 /// Unity >= 2017.4 supports armeabi-v7a, arm64-v8a, x86 & fat (i.e armeabi-v7a, arm64, x86)
243- /// Unity >= 5.0.x & < = 2017.3 only support armeabi-v7a, x86 & fat (i.e armeabi-v7a & x86)
243+ /// Unity >= 5.0.x & < = 2017.3 only support armeabi-v7a, x86 & fat (i.e armeabi-v7a & x86)
244244 /// </summary>
245245 public static AndroidAbis Current {
246246 set {
0 commit comments