(Object obj)
| 594 | } |
| 595 | |
| 596 | @Override |
| 597 | public boolean equals(Object obj) |
| 598 | { |
| 599 | if (this == obj) |
| 600 | { |
| 601 | return true; |
| 602 | } |
| 603 | if (obj == null) |
| 604 | { |
| 605 | return false; |
| 606 | } |
| 607 | if (getClass() != obj.getClass()) |
| 608 | { |
| 609 | return false; |
| 610 | } |
| 611 | return Arrays.equals(this.single, ((Matrix) obj).single); |
| 612 | } |
| 613 | } |
no outgoing calls