Code review

This commit is contained in:
JustArchi
2016-03-26 22:51:19 +01:00
parent 761d73eb90
commit 4fcee90b99
14 changed files with 22 additions and 54 deletions

View File

@@ -26,9 +26,9 @@ using System.Windows.Forms;
namespace ConfigGenerator {
internal sealed class EnhancedPropertyGrid : PropertyGrid {
private ASFConfig ASFConfig;
private readonly ASFConfig ASFConfig;
internal EnhancedPropertyGrid(ASFConfig config) : base() {
internal EnhancedPropertyGrid(ASFConfig config) {
if (config == null) {
return;
}
@@ -66,7 +66,6 @@ namespace ConfigGenerator {
if (globalConfig.SteamOwnerID != 0) {
Tutorial.OnAction(Tutorial.EPhase.GlobalConfigReady);
}
return;
}
}
}