mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-13 23:05:31 +02:00
Remove deprecated get_master() method of PTY
This commit is contained in:
parent
b2f190d29a
commit
8d656d8c71
4 changed files with 1 additions and 17 deletions
|
@ -172,13 +172,6 @@ func open(cols: int = DEFAULT_COLS, rows: int = DEFAULT_ROWS) -> Array:
|
|||
return _pty_native.open(cols, rows)
|
||||
|
||||
|
||||
func get_master():
|
||||
push_warning(
|
||||
"The method get_master() is deprecated and will be removed in a future version. If you really need to get the underlying Pipe of the pty, then you can access '_pty_native._pipe', but this is not supported and may change at any time."
|
||||
)
|
||||
return _pty_native.get_master()
|
||||
|
||||
|
||||
func _on_pty_native_data_received(data):
|
||||
emit_signal("data_received", data)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue