Fixed code intendation

This commit is contained in:
Thomas Vollstädt 2011-09-05 17:39:20 +02:00
parent 0298e8c795
commit c1481d51a0

View file

@ -77,10 +77,10 @@ namespace SparkleLib {
DateTime unix_epoch = new DateTime (1970, 1, 1, 0, 0, 0, 0);
return unix_epoch.AddSeconds (timestamp);
}
// Gets the relative path of two hirarchical absolute paths
public static string DiffPaths(string target, string source) {
return target.Replace(source + Path.DirectorySeparatorChar, "");
}
// Gets the relative path of two hirarchical absolute paths
public static string DiffPaths(string target, string source) {
return target.Replace(source + Path.DirectorySeparatorChar, "");
}
}
}