Преглед на файлове

additional check for null arguments

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1163610 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_8_BETA5
Sergey Vladimirov преди 12 години
родител
ревизия
62613ea8db
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5
    0
      src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java

+ 5
- 0
src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java Целия файл

@@ -540,11 +540,16 @@ public final class FileInformationBlock extends FIBAbstractType
*/
public int getSubdocumentTextStreamLength( SubdocumentType type )
{
if ( type == null )
throw new IllegalArgumentException( "argument 'type' is null" );

return _longHandler.getLong( type.getFibLongFieldIndex() );
}

public void setSubdocumentTextStreamLength( SubdocumentType type, int length )
{
if ( type == null )
throw new IllegalArgumentException( "argument 'type' is null" );
if ( length < 0 )
throw new IllegalArgumentException(
"Subdocument length can't be less than 0 (passed value is "

Loading…
Отказ
Запис