admin
2021-07-28 c0269fcfa876b9c5cf309b2006462b4d09c5ef95
library-NineOldAndroids/src/com/nineoldandroids/animation/AnimatorInflater.java
@@ -101,14 +101,12 @@
        } catch (XmlPullParserException ex) {
            Resources.NotFoundException rnf =
                    new Resources.NotFoundException("Can't load animation resource ID #0x" +
                    Integer.toHexString(id));
            rnf.initCause(ex);
                    Integer.toHexString(id), ex);
            throw rnf;
        } catch (IOException ex) {
            Resources.NotFoundException rnf =
                    new Resources.NotFoundException("Can't load animation resource ID #0x" +
                    Integer.toHexString(id));
            rnf.initCause(ex);
                    Integer.toHexString(id), ex);
            throw rnf;
        } finally {
            if (parser != null) parser.close();