Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Fixed a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
flippingbits committed Dec 8, 2010
1 parent c01b24d commit 90dc3a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## dev

- Bug fixes

* Fixed "warning: don't put space before argument parentheses" in thread.rb at line 124

## 0.2.1 (December 6, 2010)

- Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/titan/thread.rb
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def load_threads
# Saves threads to pid files inside the TITAN_DIRECTORY
#
def save_threads
pid_files.each { |pid_file| File.delete (File.expand_path(pid_file, TITAN_DIRECTORY)) }
pid_files.each { |pid_file| File.delete(File.expand_path(pid_file, TITAN_DIRECTORY)) }
@@threads.each_value{ |thread| thread.save }
end

Expand Down

0 comments on commit 90dc3a2

Please sign in to comment.