(Object obj)
| 512 | } |
| 513 | |
| 514 | @Override |
| 515 | public boolean equals(Object obj) { |
| 516 | if (this == obj) return true; |
| 517 | if (obj == null) return false; |
| 518 | if (getClass() != obj.getClass()) return false; |
| 519 | final Dict other = (Dict) obj; |
| 520 | if (dictionary == null) { |
| 521 | if (other.dictionary != null) return false; |
| 522 | } else if (!dictionary.equals(other.dictionary)) return false; |
| 523 | return true; |
| 524 | } |
| 525 | |
| 526 | |
| 527 | public Map<Prop, Object> getMap() { |
no test coverage detected