Make warnings go away

This commit is contained in:
adelikat 2014-07-22 23:18:44 +00:00
parent 8c0693f308
commit 7eb7071c1d
5 changed files with 2 additions and 9 deletions

View File

@ -395,7 +395,6 @@ Dispatcher == null
/// <summary> /// <summary>
/// Gets the current library features. /// Gets the current library features.
/// </summary> /// </summary>
[CLSCompliant(false)]
public static LibraryFeature CurrentLibraryFeatures public static LibraryFeature CurrentLibraryFeatures
{ {
get get
@ -581,7 +580,6 @@ Dispatcher == null
/// <summary> /// <summary>
/// Gets or sets index of the file in the archive file table. /// Gets or sets index of the file in the archive file table.
/// </summary> /// </summary>
[CLSCompliant(false)]
public int Index { get; set; } public int Index { get; set; }
/// <summary> /// <summary>
@ -607,19 +605,16 @@ Dispatcher == null
/// <summary> /// <summary>
/// Gets or sets size of the file (unpacked). /// Gets or sets size of the file (unpacked).
/// </summary> /// </summary>
[CLSCompliant(false)]
public ulong Size { get; set; } public ulong Size { get; set; }
/// <summary> /// <summary>
/// Gets or sets CRC checksum of the file. /// Gets or sets CRC checksum of the file.
/// </summary> /// </summary>
[CLSCompliant(false)]
public uint Crc { get; set; } public uint Crc { get; set; }
/// <summary> /// <summary>
/// Gets or sets file attributes. /// Gets or sets file attributes.
/// </summary> /// </summary>
[CLSCompliant(false)]
public uint Attributes { get; set; } public uint Attributes { get; set; }
/// <summary> /// <summary>

View File

@ -156,7 +156,6 @@ namespace SevenZip
/// Initializes a new instance of the OpenEventArgs class /// Initializes a new instance of the OpenEventArgs class
/// </summary> /// </summary>
/// <param name="totalSize">Size of unpacked archive data</param> /// <param name="totalSize">Size of unpacked archive data</param>
[CLSCompliant(false)]
public OpenEventArgs(ulong totalSize) public OpenEventArgs(ulong totalSize)
{ {
_totalSize = totalSize; _totalSize = totalSize;
@ -165,7 +164,6 @@ namespace SevenZip
/// <summary> /// <summary>
/// Gets the size of unpacked archive data /// Gets the size of unpacked archive data
/// </summary> /// </summary>
[CLSCompliant(false)]
public ulong TotalSize public ulong TotalSize
{ {
get get

View File

@ -22,7 +22,6 @@ namespace SevenZip
/// The set of features supported by the library. /// The set of features supported by the library.
/// </summary> /// </summary>
[Flags] [Flags]
[CLSCompliant(false)]
public enum LibraryFeature : uint public enum LibraryFeature : uint
{ {
/// <summary> /// <summary>

View File

@ -331,7 +331,6 @@ namespace SevenZip
/// <summary> /// <summary>
/// Gets the number of files in the archive /// Gets the number of files in the archive
/// </summary> /// </summary>
[CLSCompliant(false)]
public uint FilesCount public uint FilesCount
{ {
get get

View File

@ -4,6 +4,8 @@ using System.Reflection;
using Newtonsoft.Json; using Newtonsoft.Json;
using Newtonsoft.Json.Serialization; using Newtonsoft.Json.Serialization;
#pragma warning disable 618
namespace BizHawk.Client.Common namespace BizHawk.Client.Common
{ {
public static class ConfigService public static class ConfigService