|
Last change
on this file was 29681, checked in by donvip, 12 years ago |
|
[josm_opendata] .7z archive read support: remove unused code
|
|
File size:
478 bytes
|
| Line | |
|---|
| 1 | package org.j7zip.SevenZip.Archive.SevenZip;
|
|---|
| 2 |
|
|---|
| 3 | import org.j7zip.Common.LongVector;
|
|---|
| 4 |
|
|---|
| 5 | class InArchiveInfo
|
|---|
| 6 | {
|
|---|
| 7 | public byte ArchiveVersion_Major;
|
|---|
| 8 | //public byte ArchiveVersion_Minor;
|
|---|
| 9 |
|
|---|
| 10 | //public long StartPosition;
|
|---|
| 11 | public long StartPositionAfterHeader;
|
|---|
| 12 | public long DataStartPosition;
|
|---|
| 13 | public long DataStartPosition2;
|
|---|
| 14 | LongVector FileInfoPopIDs = new LongVector();
|
|---|
| 15 |
|
|---|
| 16 | void Clear()
|
|---|
| 17 | {
|
|---|
| 18 | FileInfoPopIDs.clear();
|
|---|
| 19 | }
|
|---|
| 20 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.