Ignore:
Timestamp:
2016-08-20T20:58:03+02:00 (8 years ago)
Author:
Don-vip
Message:

update to metadata-extractor 2.9.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/drew/lang/ByteArrayReader.java

    r8132 r10862  
    11/*
    2  * Copyright 2002-2015 Drew Noakes
     2 * Copyright 2002-2016 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    2222package com.drew.lang;
    2323
     24import java.io.IOException;
     25
    2426import com.drew.lang.annotations.NotNull;
    25 
    26 import java.io.IOException;
    2727
    2828/**
     
    4040    private final byte[] _buffer;
    4141
    42     @SuppressWarnings({ "ConstantConditions" })
    43     @com.drew.lang.annotations.SuppressWarnings(value = "EI_EXPOSE_REP2", justification = "Design intent")
    4442    public ByteArrayReader(@NotNull byte[] buffer)
    4543    {
     
    7472        return bytesRequested >= 0
    7573            && index >= 0
    76             && (long)index + (long)bytesRequested - 1L < (long)_buffer.length;
     74            && (long)index + (long)bytesRequested - 1L < _buffer.length;
    7775    }
    7876
Note: See TracChangeset for help on using the changeset viewer.