Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #298 from takkii/develop
Browse files Browse the repository at this point in the history
Update.
  • Loading branch information
takkii authored Jan 17, 2023
2 parents 97eb24c + 8334c56 commit 1a0d77f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion katakana_runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def self.run10
threads << Thread.start(KatakanaRunner.run8) { |r8| r8 }
threads << Thread.start(KatakanaRunner.run9) { |r9| r9 }
threads << Thread.start(KatakanaRunner.run10) { |r10| r10 }
threads.each { |thr| thr.join }
threads.each { |thr| thr.join.value }

rescue StandardError => e
puts e.backtrace
Expand Down
2 changes: 1 addition & 1 deletion romaji_runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def self.run10
threads << Thread.start(RomajiRunner.run8) { |r8| r8 }
threads << Thread.start(RomajiRunner.run9) { |r9| r9 }
threads << Thread.start(RomajiRunner.run10) { |r10| r10 }
threads.each { |thr| thr.join }
threads.each { |thr| thr.join.value }

rescue StandardError => e
puts e.backtrace
Expand Down

0 comments on commit 1a0d77f

Please sign in to comment.