Skip to content

Commit

Permalink
Remove unused garbage.
Browse files Browse the repository at this point in the history
  • Loading branch information
wyattoday committed Feb 6, 2012
1 parent 46a7936 commit 4ef78a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions ServerFile.Load.cs
Expand Up @@ -74,9 +74,6 @@ public static ServerFile Load(string fileName, string updatePathVar, string cust
case 0x01://Read New Version
serv.NewVersion = ReadFiles.ReadDeprecatedString(fs);
break;
case 0x02://Add server file site
ClientFile.AddUniqueString(ReadFiles.ReadDeprecatedString(fs), serv.ServerFileSites);
break;
case 0x07: //Min Client version
serv.MinClientVersion = ReadFiles.ReadDeprecatedString(fs);
break;
Expand Down Expand Up @@ -145,6 +142,7 @@ public static ServerFile Load(string fileName, string updatePathVar, string cust
return serv;
}

#if !SERVER_READER
public VersionChoice GetVersionChoice(string installedVersion)
{
VersionChoice updateFrom = null;
Expand Down Expand Up @@ -184,5 +182,6 @@ public bool CatchAllUpdateExists
return catchAllExists.Value;
}
}
#endif
}
}
2 changes: 0 additions & 2 deletions ServerFile.cs
Expand Up @@ -51,7 +51,5 @@ public partial class ServerFile
public string NoUpdateToLatestLinkText;

public string NoUpdateToLatestLinkURL;

public List<string> ServerFileSites = new List<string>(1);
}
}

0 comments on commit 4ef78a0

Please sign in to comment.