]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-1648; fix checkstyle
authorChris Bowditch <cbowditch@apache.org>
Tue, 12 May 2020 08:43:58 +0000 (08:43 +0000)
committerChris Bowditch <cbowditch@apache.org>
Tue, 12 May 2020 08:43:58 +0000 (08:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1877638 13f79535-47bb-0310-9956-ffa450edef68

fop-core/src/main/java/org/apache/fop/svg/PDFANode.java
fop-core/src/test/java/org/apache/fop/pdf/PDFFactoryTestCase.java
fop-core/src/test/java/org/apache/fop/pdf/PDFGoToTestCase.java

index a5556170663265ba162f6cabe16eb3e18cbd03cb..cbd46cf7563fba5c8e1ecf8c93730626576fa94a 100644 (file)
@@ -26,6 +26,7 @@ import java.awt.geom.Rectangle2D;
 import java.util.StringTokenizer;
 
 import org.apache.batik.gvt.CompositeGraphicsNode;
+
 import org.apache.fop.pdf.PDFLink;
 
 /**
index f487a5b0c52cfe39ff7308c2de16dd11cc023b48..ddbe63ee4ec4c4d143a39aaec2fde81e42cd2804 100644 (file)
@@ -217,7 +217,7 @@ public class PDFFactoryTestCase {
     public void testMakeLink() {
         PDFDocument doc = new PDFDocument("");
         PDFFactory pdfFactory = new PDFFactory(doc);
-        Rectangle2D rect = new Rectangle(10,20);
+        Rectangle2D rect = new Rectangle(10, 20);
         PDFLink link = pdfFactory.makeLink(rect, "dest", true);
 
         String expectedString = "<< /Type /Annot\n" + "/Subtype /Link\n" + "/Rect [ "
index ca15926fd0cb91475a553cc62220545e6132f14b..2da46316e91e1698bd30bb5f9ea1b03ca1c4bb7e 100644 (file)
@@ -1,3 +1,20 @@
+/*\r
+ * Licensed to the Apache Software Foundation (ASF) under one or more\r
+ * contributor license agreements.  See the NOTICE file distributed with\r
+ * this work for additional information regarding copyright ownership.\r
+ * The ASF licenses this file to You under the Apache License, Version 2.0\r
+ * (the "License"); you may not use this file except in compliance with\r
+ * the License.  You may obtain a copy of the License at\r
+ *\r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
 package org.apache.fop.pdf;\r
 \r
 import org.junit.Test;\r