Code quality changes

This commit is contained in:
Robin 2016-09-22 20:40:13 +02:00
parent f07ed83722
commit 610f45d082
189 changed files with 4609 additions and 5203 deletions

View file

@ -23,13 +23,10 @@ using System;
namespace GreenshotPlugin.Core {
[AttributeUsage(AttributeTargets.Field)]
public sealed class DisplayKeyAttribute : Attribute {
private readonly string value;
public string Value {
get { return value; }
}
public string Value { get; }
public DisplayKeyAttribute(string v) {
value = v;
Value = v;
}
public DisplayKeyAttribute() {