remove some TODOs

This commit is contained in:
Hylke Bons 2012-03-15 23:54:18 +00:00
parent 98b6904d89
commit daf4818cc2
3 changed files with 1 additions and 9 deletions

View file

@ -34,20 +34,14 @@ namespace SparkleLib.Git {
public SparkleFetcher (string server, string remote_path, string target_folder) :
base (server, remote_path, target_folder)
{
//server = server.Trim ("/".ToCharArray ());
remote_path = remote_path.Trim ("/".ToCharArray ());
if (server.EndsWith ("/"))
server = server.Substring (0, server.Length - 1);
//FIXME: Adding these lines makes the fetcher fail
// if (remote_path.EndsWith ("/"))
// remote_path = remote_path.Substring (0, remote_path.Length - 1);
if (!remote_path.StartsWith ("/"))
remote_path = "/" + remote_path;
Uri uri;
try {

View file

@ -168,7 +168,6 @@ namespace SparkleShare {
if (UpdateContentEvent != null)
UpdateContentEvent (HTML);
// TODO: Check selected folder
if (UpdateSizeInfoEvent != null)
UpdateSizeInfoEvent (Size, HistorySize);
};

View file

@ -566,9 +566,8 @@ namespace SparkleShare {
Controller.OpenFolderClicked ();
};
SystemSounds.Exclamation.Play ();
// TODO: Catch attention without having to raise the window
break;
}