We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 341ebfb commit 864d127Copy full SHA for 864d127
1 file changed
src/debugger.rs
@@ -156,9 +156,7 @@ impl Debugger {
156
DownloadedFileType::Uncompressed,
157
)
158
.map_err(|err| {
159
- format!(
160
- "Failed to download java-debug fork from {JAVA_DEBUG_PLUGIN_FORK_URL}: {err}"
161
- )
+ format!("Failed to download java-debug fork from {JAVA_DEBUG_PLUGIN_FORK_URL}: {err}")
162
})?;
163
164
self.plugin_path = Some(jar_path.clone());
@@ -196,9 +194,7 @@ impl Debugger {
196
194
return Err(err.to_owned());
197
195
}
198
199
- println!(
200
- "Could not fetch debugger: {err}\nFalling back to local version."
201
- );
+ println!("Could not fetch debugger: {err}\nFalling back to local version.");
202
203
let exists = fs::read_dir(prefix)
204
.ok()
0 commit comments