fix coding style

This commit is contained in:
Hylke Bons 2013-01-06 15:58:11 +01:00
parent c1d6289507
commit b2400bb5bc
2 changed files with 5 additions and 5 deletions

View file

@ -135,7 +135,7 @@ namespace SparkleLib.Git {
double number = 0.0;
if (match.Success) {
number = double.Parse (match.Groups [1].Value, new CultureInfo("en-US"));
number = double.Parse (match.Groups [1].Value, new CultureInfo ("en-US"));
// The cloning progress consists of two stages: the "Compressing
// objects" stage which we count as 20% of the total progress, and

View file

@ -257,7 +257,7 @@ namespace SparkleLib.Git {
double number = 0.0;
if (match.Success) {
number = double.Parse (match.Groups [1].Value, new CultureInfo("en-US"));
number = double.Parse (match.Groups [1].Value, new CultureInfo ("en-US"));
// The pushing progress consists of two stages: the "Compressing
// objects" stage which we count as 20% of the total progress, and
@ -272,7 +272,7 @@ namespace SparkleLib.Git {
Match speed_match = this.speed_regex.Match (line);
if (speed_match.Success) {
speed = double.Parse (speed_match.Groups [1].Value, new CultureInfo("en-US")) * 1024;
speed = double.Parse (speed_match.Groups [1].Value, new CultureInfo ("en-US")) * 1024;
if (speed_match.Groups [2].Value.Equals ("M"))
speed = speed * 1024;
@ -339,7 +339,7 @@ namespace SparkleLib.Git {
double number = 0.0;
if (match.Success) {
number = double.Parse (match.Groups [1].Value, new CultureInfo("en-US"));
number = double.Parse (match.Groups [1].Value, new CultureInfo ("en-US"));
// The fetching progress consists of two stages: the "Compressing
// objects" stage which we count as 20% of the total progress, and
@ -354,7 +354,7 @@ namespace SparkleLib.Git {
Match speed_match = this.speed_regex.Match (line);
if (speed_match.Success) {
speed = double.Parse (speed_match.Groups [1].Value, new CultureInfo("en-US")) * 1024;
speed = double.Parse (speed_match.Groups [1].Value, new CultureInfo ("en-US")) * 1024;
if (speed_match.Groups [2].Value.Equals ("M"))
speed = speed * 1024;