(Object other)
| 61 | } |
| 62 | |
| 63 | @Override |
| 64 | public boolean equals(Object other) { |
| 65 | if (other != null && other instanceof FileSpec) { |
| 66 | FileSpec ofs = (FileSpec)other; |
| 67 | if (!fileName.equals(ofs.fileName)) return false; |
| 68 | return funcSpec.equals(ofs.funcSpec); |
| 69 | } else { |
| 70 | return false; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | @Override |
| 75 | public int hashCode() { |
no outgoing calls
no test coverage detected