# HG changeset patch # User Jiri Vanek # Date 1550469131 -3600 # Node ID d75ac11c275b064cbfffcb3068d184f11031ee01 # Parent 7ef277699fd11ee694e8a1026366770be044210f Fioxed double wrappered factory for windows diff -r 7ef277699fd1 -r d75ac11c275b rust-launcher/src/os_access.rs --- a/rust-launcher/src/os_access.rs Sun Feb 17 10:35:53 2019 +0100 +++ b/rust-launcher/src/os_access.rs Mon Feb 18 06:52:11 2019 +0100 @@ -164,7 +164,6 @@ #[cfg(windows)] impl Windows { - pub fn new(debug: bool, load_advanced: bool) -> Windows { pub fn new(debug: bool, load_advanced: bool) -> Windows { if ! load_advanced { Windows { verbose: debug, al: log_helper::AdvancedLogging::default() } @@ -174,8 +173,6 @@ } } -} - #[cfg(windows)] impl Os for Windows {