Rev 1611 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1611 | Rev 1615 | ||
---|---|---|---|
Line 25... | Line 25... | ||
25 | 25 | ||
26 | protected int correctLengthToExcludeName(int length) { |
26 | protected int correctLengthToExcludeName(int length) { |
27 | return length - 12; |
27 | return length - 12; |
Line 28... | Line 28... | ||
28 | } |
28 | } |
29 | 29 | ||
30 | protected void setName(int[] data) { |
30 | protected void setName(int[] data, int offset) { |
31 | StringBuilder sbname = new StringBuilder(); |
31 | StringBuilder sbname = new StringBuilder(); |
32 | for (int i = 0; i < 12; i++) { |
32 | for (int i = 0; i < 12; i++) { |
33 | if (data[offset] == 0) |
33 | if (data[offset] == 0) |