Remove trailing whitespace

This commit is contained in:
j883376
2013-05-06 13:07:41 -04:00
parent 7a93966158
commit ffcff4aea1
548 changed files with 16397 additions and 16398 deletions
+2 -2
View File
@@ -107,7 +107,7 @@ while(<SPELLS>) {
}
my $insert1 = join("`,`", @t_col_names);
my $insert2 = join("','", @s); #put everything in quotes & separate w/ commas for the query, plus the beginning & ending quotes. this doesn't print out to the console correctly (for me), but hopefully the query will be fine
my $insert2 = join("','", @s); #put everything in quotes & separate w/ commas for the query, plus the beginning & ending quotes. this doesn't print out to the console correctly (for me), but hopefully the query will be fine
my $insert = sprintf("REPLACE INTO %s (`%s`) VALUES ('%s')", $table, $insert1, $insert2);
printf("Loading \"%s\" (%d) \r", $s[1], $s[0]); # name (id)
@@ -118,7 +118,7 @@ while(<SPELLS>) {
} else {
$loadedspells++; #to compare db inserts to total spells
}
$highid = $s[0]; #set to current id
}