aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-07-13 16:46:24 +0200
committerJayXKanz666 <[email protected]>2017-07-13 16:46:24 +0200
commit264deb3774935da3faba95fef55a94227e3f2368 (patch)
tree2eac43f957e8a20c3c773119155bc328c9851244 /TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
parentdd76075ce70c2ac31f01b2450c7f64009489dee9 (diff)
downloadhistacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.gz
histacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.bz2
histacom2-264deb3774935da3faba95fef55a94227e3f2368.zip
Fixed type names
-`String` replaced with `string` -`Boolean` replaced with `bool`
Diffstat (limited to 'TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs')
-rw-r--r--TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs b/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
index 4ada932..bcd60d1 100644
--- a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
+++ b/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs
@@ -14,9 +14,9 @@ namespace TimeHACK.SaveDialogs
{
public partial class SaveFileTroubleShooter : Form
{
- public String log;
+ public string log;
Save savedata = new Save();
- String json;
+ string json;
public SaveFileTroubleShooter()
{
InitializeComponent();
@@ -32,7 +32,7 @@ namespace TimeHACK.SaveDialogs
BeginScan();
}
- void WriteToLog(String toWrite)
+ void WriteToLog(string toWrite)
{
log += toWrite + Environment.NewLine;
}