Remove unneeded method (Simon Pither)

This commit is contained in:
Hylke Bons 2010-06-16 23:16:43 +01:00
parent 8441442d55
commit a541a45332

View file

@ -183,20 +183,6 @@ namespace SparkleShare {
}
// Clones a remote repo
public void Clone ()
{
Process.StartInfo.Arguments = "clone " + RemoteOriginUrl;
Process.Start ();
// Add a gitignore file
TextWriter Writer = new StreamWriter (LocalPath + ".gitignore");
Writer.WriteLine ("*~"); // Ignore gedit swap files
Writer.WriteLine (".*.sw?"); // Ignore vi swap files
Writer.Close ();
}
// Stages the made changes
public void Add ()
{
BufferTimer.Stop ();