From 31593d837f611e7f266f9ed648d2a8748023c074 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 3 Sep 2026 23:34:24 +0900 Subject: [PATCH] Fallback to stub even on Windows --- jruby/lib/io/console.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/jruby/lib/io/console.rb b/jruby/lib/io/console.rb index a9cb2ce..ef5d1e2 100644 --- a/jruby/lib/io/console.rb +++ b/jruby/lib/io/console.rb @@ -47,9 +47,7 @@ class Mode when /linux/i backends << %w[ffi/termios linux] << %w[stty] when /mswin|win32|ming/i - require_relative 'console/constants/windows' - require_relative 'console/backend/ffi/windows' - return + backends << %w[ffi/windows windows] else backends << %w[stty] end