Commit 43d80e4
committed
Fix clippy warnings
Report:
```
> cargo clippy
Compiling framework_lib v0.1.0 (/var/home/zoid/clone/framework-system/framework_lib)
warning: unneeded `return` statement
--> framework_lib/src/commandline/mod.rs:459:5
|
459 | return 1;
| ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
= help: remove `return`
```
Signed-off-by: Daniel Schaefer <[email protected]>1 parent 423015c commit 43d80e4
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
456 | 456 | | |
457 | 457 | | |
458 | 458 | | |
459 | | - | |
| 459 | + | |
| 460 | + | |
460 | 461 | | |
461 | 462 | | |
462 | 463 | | |
| |||
0 commit comments