01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest.transparency;
06:
07: public class NotInstrumented {
08: private Object o = new Object();
09:
10: public NotInstrumented() {
11: super ();
12: o.getClass();
13: }
14:
15: public boolean equals(Object o2) {
16: if (this == o2)
17: return true;
18: if (o2 instanceof NotInstrumented) {
19: return true;
20: }
21: return false;
22: }
23:
24: }
|