Minor clean up

This commit is contained in:
Pavlos Touboulidis
2014-04-25 17:40:00 +03:00
parent fa5c8d083e
commit 4f12882706

View File

@@ -23,8 +23,7 @@ namespace OpenRA.Widgets
const int logLength = 9;
uint totalTicks;
internal List<ChatLine> recentLines = new List<ChatLine>();
List<ChatLine> recentLines = new List<ChatLine>();
public override Rectangle EventBounds { get { return Rectangle.Empty; } }
@@ -84,11 +83,6 @@ namespace OpenRA.Widgets
recentLines.RemoveAt(0);
}
public void ClearChat()
{
recentLines = new List<ChatLine>();
}
public override void Tick()
{
totalTicks++;