Skip to content

Commit 8224f45

Browse files
committed
Remove debug code
1 parent b4d729f commit 8224f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/ruby/truffleruby/core/exception.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def location
177177
def self.to_tty?
178178
# Whether $stderr refers to the original STDERR and STDERR is a tty.
179179
# When using polyglot stdio, we cannot know and assume false.
180-
false && $stderr.equal?(STDERR) && !STDERR.closed? &&
180+
$stderr.equal?(STDERR) && !STDERR.closed? &&
181181
(!Truffle::Boot.get_option('polyglot-stdio') && STDERR.tty?)
182182
end
183183
end

0 commit comments

Comments
 (0)