Don't print stacktrace before throwing new exception
This commit is contained in:
parent
1be20ceeec
commit
34b6928124
|
@ -112,7 +112,6 @@ public class BandcampStreamExtractor extends StreamExtractor {
|
||||||
calendar.setTime(date);
|
calendar.setTime(date);
|
||||||
return new DateWrapper(calendar, false);
|
return new DateWrapper(calendar, false);
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
e.printStackTrace();
|
|
||||||
throw new ParsingException("Could not extract date", e);
|
throw new ParsingException("Could not extract date", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue