(Object o)
| 28 | } |
| 29 | |
| 30 | @Override |
| 31 | public boolean equals(Object o) { |
| 32 | if (this == o) return true; |
| 33 | if (o == null || getClass() != o.getClass()) return false; |
| 34 | |
| 35 | PDF that = (PDF) o; |
| 36 | |
| 37 | // Probably incorrect - comparing Object[] arrays with Arrays.equals |
| 38 | return Arrays.equals(pdfSegments, that.pdfSegments); |
| 39 | |
| 40 | } |
| 41 | |
| 42 | @Override |
| 43 | public int hashCode() { |
no outgoing calls