Skip to content

Commit 25d6724

Browse files
committed
Remove prints
1 parent aa24845 commit 25d6724

File tree

1 file changed

+0
-2
lines changed
  • crates/hdfs-native/src/security

1 file changed

+0
-2
lines changed

crates/hdfs-native/src/security/user.rs

-2
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ fn parse_string(reader: &mut impl Buf, length: i32) -> io::Result<String> {
270270
#[allow(dead_code)]
271271
fn parse_int_string(reader: &mut impl Buf) -> io::Result<Option<String>> {
272272
let length = reader.get_i32();
273-
println!("String length {}", length);
274273
let value = if length == -1 {
275274
None
276275
} else {
@@ -282,7 +281,6 @@ fn parse_int_string(reader: &mut impl Buf) -> io::Result<Option<String>> {
282281
/// Parse a string prefixed with the length as a vint
283282
fn parse_vint_string(reader: &mut impl Buf) -> io::Result<String> {
284283
let length = parse_vint(reader);
285-
println!("String length {}", length);
286284
parse_string(reader, length)
287285
}
288286

0 commit comments

Comments
 (0)