Skip to content

Commit

Permalink
remove stray dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
adwhit committed Mar 15, 2020
1 parent eed2c72 commit 174f181
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion examples/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl Config {
let consumer_key = include_str!("consumer_key").trim();
let consumer_secret = include_str!("consumer_secret").trim();

let con_token = egg_mode::KeyPair::new(dbg!(consumer_key), dbg!(consumer_secret));
let con_token = egg_mode::KeyPair::new(consumer_key, consumer_secret);

let mut config = String::new();
let user_id: u64;
Expand Down
3 changes: 0 additions & 3 deletions src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ impl<'de> Deserialize<'de> for RateLimitStatus {
D: Deserializer<'de>,
{
use serde_json::from_value;
println!("HERE");

let input = serde_json::Value::deserialize(ser)?;

Expand All @@ -221,8 +220,6 @@ impl<'de> Deserialize<'de> for RateLimitStatus {
.filter_map(|v| v.as_object())
.flat_map(|v| v.iter())
{
println!("HERE2");
dbg!(&k, &v);
if let Ok(method) = k.parse::<Method>() {
match method {
Method::Direct(m) => {
Expand Down

0 comments on commit 174f181

Please sign in to comment.