controller: Remove unused code

This commit is contained in:
Hylke Bons 2012-09-18 19:46:42 +01:00
parent 6fd13c290c
commit 94806080d2

View file

@ -96,19 +96,6 @@ namespace SparkleShare {
}
}
public List<string> UnsyncedFolders {
get {
List<string> unsynced_folders = new List<string> ();
foreach (SparkleRepoBase repo in Repositories) {
if (repo.HasUnsyncedChanges)
unsynced_folders.Add (repo.Name);
}
return unsynced_folders;
}
}
public SparkleUser CurrentUser {
get {
return this.config.User;