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

View File

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

View File

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

View File

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

View File

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