aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Reischenbacher <matthias@apache.org>2018-05-10 15:01:17 +0000
committerMatthias Reischenbacher <matthias@apache.org>2018-05-10 15:01:17 +0000
commit32dda6a7507626da3aa83eb952a247f08b384fe7 (patch)
tree445d7d2772552184c7087c09a8daa41bb99673cc
parent6add9bfc3ecf09f50b49dacc11456586e68773dc (diff)
downloadxmlgraphics-fop-32dda6a7507626da3aa83eb952a247f08b384fe7.tar.gz
xmlgraphics-fop-32dda6a7507626da3aa83eb952a247f08b384fe7.zip
FOP-2572: make checkstyle happy with the correct java import order
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1831348 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java14
1 files changed, 8 insertions, 6 deletions
diff --git a/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java b/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java
index cc015ccb0..94e848b73 100644
--- a/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java
+++ b/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java
@@ -18,22 +18,24 @@
/* $Id$ */
package org.apache.fop.svg.font;
-import org.apache.batik.gvt.font.GVTLineMetrics;
-import org.apache.fop.fonts.Font;
-import org.apache.fop.fonts.FontMetrics;
-import org.junit.Before;
-import org.junit.Test;
-
import java.awt.geom.Point2D;
import java.text.CharacterIterator;
import java.text.StringCharacterIterator;
+import org.junit.Before;
+import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.mockito.Matchers.anyInt;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
+import org.apache.batik.gvt.font.GVTLineMetrics;
+
+import org.apache.fop.fonts.Font;
+import org.apache.fop.fonts.FontMetrics;
+
+
public class KerningGlyphLayoutTestCase extends FOPGVTGlyphVectorTest {
private final int fontSize = 37500;