(no commit message)
[utils] / support / general / src / test / java / org / wamblee / observer / ObservableTest.java
index ca38ca64e4a578a86e2cebc55e23ee5a480deea6..a985d433f96a0aa07cb466af1c7564e66c89afb5 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright 2005 the original author or authors.
- *
+ * Copyright 2005-2010 the original author or authors.
+ * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- *
+ * 
  *      http://www.apache.org/licenses/LICENSE-2.0
- *
+ * 
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -42,7 +42,7 @@ public class ObservableTest extends TestCase {
     @Override
     protected void setUp() throws Exception {
         super.setUp();
-        observed = new Integer(1);
+        observed = Integer.valueOf(1);
         observable = new Observable<Integer, String>(observed,
             new DefaultObserverNotifier());
     }