Skip to content

Commit

Permalink
removes comment
Browse files Browse the repository at this point in the history
  • Loading branch information
naps62 committed Nov 30, 2020
1 parent f885178 commit a52d88f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions native/imageflow_ex/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ mod atoms {
rustler::rustler_atoms! {
atom ok;
atom error;
//atom __true__ = "true";
//atom __false__ = "false";
}
}

Expand Down Expand Up @@ -91,6 +89,7 @@ pub fn job_get_output_buffer<'a>(env: Env<'a>, args: &[Term<'a>]) -> Result<Term

pub fn job_save_output_to_file<'a>(env: Env<'a>, args: &[Term<'a>]) -> Result<Term<'a>, Error> {
let job = Job::load_from_id(args[0].decode()?).ok().unwrap();

let io_id: i32 = args[1].decode()?;
let path: String = args[2].decode()?;

Expand Down

0 comments on commit a52d88f

Please sign in to comment.