deprecations fixed

This commit is contained in:
Sergey Solovyev
2013-06-26 12:25:54 +04:00
parent 99e7471ebd
commit 6aa5802dea
7 changed files with 18 additions and 19 deletions

View File

@@ -22,10 +22,9 @@
package org.solovyev.android.calculator;
import junit.framework.Assert;
import javax.annotation.Nonnull;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

View File

@@ -22,8 +22,7 @@
package org.solovyev.android.calculator;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;
/**

View File

@@ -22,10 +22,9 @@
package org.solovyev.android.calculator.history;
import junit.framework.Assert;
import javax.annotation.Nonnull;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.solovyev.android.calculator.CalculatorDisplayViewStateImpl;

View File

@@ -22,8 +22,7 @@
package org.solovyev.android.calculator.math;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.solovyev.android.calculator.AbstractCalculatorTest;

View File

@@ -44,7 +44,8 @@ import org.solovyev.android.calculator.jscl.JsclOperation;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import static junit.framework.Assert.fail;
import static org.junit.Assert.fail;
/**
* User: serso