(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / adapters / X2.java
index 0a96e84e9ba2410e3986dd616fd546b57a2ffdf0..ea8747c3971e0cfa8e2a0cf9ec55ca471da32625 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.adapters;
 
 /**
@@ -26,7 +26,7 @@ public class X2 {
      * 
      */
     public X2(Integer aInteger) {
-        AdapterTestCase.EVENT_TRACKER.eventOccurred("x2(" + aInteger + ")");
+        AdapterTestCase.getEventTracker().eventOccurred("x2(" + aInteger + ")");
     }
 
     /**
@@ -34,6 +34,6 @@ public class X2 {
      * 
      */
     public X2(String aValue) {
-        AdapterTestCase.EVENT_TRACKER.eventOccurred("x2(" + aValue + ")");
+        AdapterTestCase.getEventTracker().eventOccurred("x2(" + aValue + ")");
     }
 }