(no commit message)
[utils] / support / general / src / test / java / org / wamblee / io / ClassPathResourceTest.java
index 4ebcb64c85d95dc372fb5cda2ff0bffa08a24ff7..37ab98a6a197f8adc801eb4d3bb9e833382d8326 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.io;
 
 import junit.framework.TestCase;
@@ -45,7 +45,7 @@ public class ClassPathResourceTest extends TestCase {
         try {
             ClassPathResource resource = new ClassPathResource(
                 "org/wamblee/io/myresource-nonexistent.txt");
-            InputStream is = resource.getInputStream();
+            resource.getInputStream();
         } catch (IOException e) {
             return; // ok
         }