Skip to content

Commit 23f033a

Browse files
committed
Removed commented out println! calls
1 parent 2caeb65 commit 23f033a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

rust/src/datatypes.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ where
9393
impl DataType {
9494
/// Parse a data type from a JSON representation
9595
fn from(json: &Value) -> Result<DataType> {
96-
//println!("DataType::from({:?})", json);
9796
match *json {
9897
Value::Object(ref map) => match map.get("name") {
9998
Some(s) if s == "bool" => Ok(DataType::Boolean),
@@ -212,7 +211,6 @@ impl Field {
212211

213212
/// Parse a field definition from a JSON representation
214213
pub fn from(json: &Value) -> Result<Self> {
215-
//println!("Field::from({:?}", json);
216214
match *json {
217215
Value::Object(ref map) => {
218216
let name = match map.get("name") {

0 commit comments

Comments
 (0)