Changeset 15217 in josm for trunk/src/com/drew/metadata/jpeg/HuffmanTablesDescriptor.java
- Timestamp:
- 2019-07-07T01:56:46+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/drew/metadata/jpeg/HuffmanTablesDescriptor.java
r13061 r15217 1 1 /* 2 * Copyright 2002-201 7Drew Noakes2 * Copyright 2002-2019 Drew Noakes and contributors 3 3 * 4 4 * Licensed under the Apache License, Version 2.0 (the "License"); … … 28 28 29 29 /** 30 * Provides a human-readable string version of the tag stored in a HuffmanTableDirectory. 30 * Provides a human-readable string version of the tag stored in a {@link HuffmanTablesDirectory}. 31 31 * 32 32 * <ul> … … 61 61 { 62 62 Integer value = _directory.getInteger(TAG_NUMBER_OF_TABLES); 63 if (value ==null)63 if (value == null) 64 64 return null; 65 65 return value + (value == 1 ? " Huffman table" : " Huffman tables");
Note:
See TracChangeset
for help on using the changeset viewer.
