Skip to content

Commit

Permalink
Whitespace cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanBUK committed Mar 18, 2011
1 parent 1d042ef commit 3709c34
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 179 deletions.
7 changes: 0 additions & 7 deletions lib/git/blob.js
Expand Up @@ -137,10 +137,3 @@ Blob.blame = function(repo, commit, file, callback) {
callback(null, blames); callback(null, blames);
}); });
} }







16 changes: 0 additions & 16 deletions lib/git/commit.js
Expand Up @@ -287,19 +287,3 @@ Commit.prototype.toString = function() {
Commit.prototype.toPatch = function(callback) { Commit.prototype.toPatch = function(callback) {
this.repo.git.format_patch({'1':true, stdout:true}, this.id, callback); this.repo.git.format_patch({'1':true, stdout:true}, this.id, callback);
} }
















15 changes: 0 additions & 15 deletions lib/git/commit_stats.js
Expand Up @@ -98,18 +98,3 @@ CommitStats.list_from_string = function(repo, text) {
// Return the commits // Return the commits
return commits; return commits;
} }















14 changes: 0 additions & 14 deletions lib/git/diff.js
Expand Up @@ -79,17 +79,3 @@ Diff.list_from_string = function(repo, text, callback) {
// Return the list of diffs // Return the list of diffs
callback(null, diffs); callback(null, diffs);
} }














16 changes: 0 additions & 16 deletions lib/git/file_index.js
Expand Up @@ -223,19 +223,3 @@ FileIndex.prototype.last_commits = function(commit_sha, files_matcher, callback)
callback(null, matches); callback(null, matches);
}); });
} }
















19 changes: 0 additions & 19 deletions lib/git/git.js
Expand Up @@ -901,22 +901,3 @@ Git.prototype.commit_from_sha = function(id) {
// pre_loading_done = true // pre_loading_done = true
// // var g = new Git("..../") // // var g = new Git("..../")
// }); // });



















11 changes: 0 additions & 11 deletions lib/git/git_file_operations.js
Expand Up @@ -147,14 +147,3 @@ GitFileOperations.fs_write = function(dir, file, content, callback) {
// Append the entry to the file // Append the entry to the file
fs.writeFile(current_path, content, callback); fs.writeFile(current_path, content, callback);
} }











21 changes: 0 additions & 21 deletions lib/git/git_index.js
Expand Up @@ -162,24 +162,3 @@ GitIndex.prototype.write_tree = function(tree, now_tree, callback) {
GitIndex.prototype.write_blob = function(data) { GitIndex.prototype.write_blob = function(data) {
return this.repo.git.put_raw_object(data, 'blob'); return this.repo.git.put_raw_object(data, 'blob');
} }





















1 change: 0 additions & 1 deletion lib/git/index.js
Expand Up @@ -42,4 +42,3 @@
for (var i in module) for (var i in module)
exports[i] = module[i]; exports[i] = module[i];
}); });

10 changes: 0 additions & 10 deletions lib/git/loose_storage.js
Expand Up @@ -149,13 +149,3 @@ LooseStorage.verify_header = function(type, size) {
throw "invalid object header"; throw "invalid object header";
} }
} }










22 changes: 0 additions & 22 deletions lib/git/repo.js
Expand Up @@ -503,25 +503,3 @@ Repo.prototype.is_head = function(head_name, callback) {
Repo.prototype.index = function(callback) { Repo.prototype.index = function(callback) {
callback(null, new GitIndex(this)); callback(null, new GitIndex(this));
} }






















15 changes: 0 additions & 15 deletions lib/git/repository.js
Expand Up @@ -747,18 +747,3 @@ var add_file = function(dir, name, content) {
Repository.prototype.put_raw_object = function(content, type) { Repository.prototype.put_raw_object = function(content, type) {
return this.loose[0].put_raw_object(content, type); return this.loose[0].put_raw_object(content, type);
} }















12 changes: 0 additions & 12 deletions lib/git/tree.js
Expand Up @@ -145,15 +145,3 @@ Tree.create = function(repo, attributes, callback) {


callback(null, tree); callback(null, tree);
} }












0 comments on commit 3709c34

Please sign in to comment.