Don't print stacktrace before throwing new exception

This commit is contained in:
Fynn Godau 2020-06-04 14:25:38 +02:00
parent 1be20ceeec
commit 34b6928124
1 changed files with 0 additions and 1 deletions

View File

@ -112,7 +112,6 @@ public class BandcampStreamExtractor extends StreamExtractor {
calendar.setTime(date);
return new DateWrapper(calendar, false);
} catch (ParseException e) {
e.printStackTrace();
throw new ParsingException("Could not extract date", e);
}
}