Selaa lähdekoodia

make OperateResult._errors readonly (#869)

master
Weihan Li 3 vuotta sitten
committed by GitHub
vanhempi
commit
12c3654bfd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      src/DotNetCore.CAP/OperateResult.cs

+ 2
- 2
src/DotNetCore.CAP/OperateResult.cs Näytä tiedosto

@@ -15,7 +15,7 @@ namespace DotNetCore.CAP
// ReSharper disable once InconsistentNaming

// ReSharper disable once FieldCanBeMadeReadOnly.Local
private List<OperateError> _errors = new List<OperateError>();
private readonly List<OperateError> _errors = new List<OperateError>();

/// <summary>
/// Flag indicating whether if the operation succeeded or not.
@@ -93,4 +93,4 @@ namespace DotNetCore.CAP
/// </summary>
public string Description { get; set; }
}
}
}

Ladataan…
Peruuta
Tallenna