]> source.dussan.org Git - poi.git/commitdiff
convert indents to spaces
authorPJ Fanning <fanningpj@apache.org>
Wed, 7 Jul 2021 13:45:01 +0000 (13:45 +0000)
committerPJ Fanning <fanningpj@apache.org>
Wed, 7 Jul 2021 13:45:01 +0000 (13:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891364 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/ddf/EscherShapePathProperty.java
poi/src/main/java/org/apache/poi/hpsf/ClassID.java
poi/src/main/java/org/apache/poi/hssf/record/FormulaRecord.java
poi/src/test/java/org/apache/poi/ss/formula/eval/TestOperandResolver.java
poi/src/test/java/org/apache/poi/ss/usermodel/TestDataFormatter.java

index 833d4ef19dd3edc9e0bdabd7f0aca8848f7d542d..774c408eb8a6c6a456eddeee380115cdb2468584 100644 (file)
@@ -31,8 +31,8 @@ public class EscherShapePathProperty extends EscherSimpleProperty {
     /**
      * Create an instance of an escher shape path property.
      *
-        * @param propertyNumber which property to handle
-        * @param shapePath which shape path to handle
+     * @param propertyNumber which property to handle
+     * @param shapePath which shape path to handle
      */
     public EscherShapePathProperty( short propertyNumber, int shapePath ) {
         super( propertyNumber, false, false, shapePath );
index 81430cbbe4b2d13c554b334084a1fdbe559229f3..aaf45554aeb11d147d421a6fd55c0d9a6dff51d7 100644 (file)
@@ -68,8 +68,8 @@ public class ClassID implements Duplicatable, GenericRecord {
 
     /**
      * Clones the given ClassID
-        *
-        * @param other The ClassID to use a base for creating this one
+     *
+     * @param other The ClassID to use a base for creating this one
      */
     public ClassID(ClassID other) {
         System.arraycopy(other.bytes, 0, bytes, 0, bytes.length);
index b0c3178f4eb328a2988420583d43cdfebe01c5bd..efb65e9f93072b2ebb9100ceb634780b5a77bdef 100644 (file)
@@ -121,8 +121,8 @@ public final class FormulaRecord extends CellRecord {
     }
 
     /**
-        * @return The type of the cached value or CellType.NUMERIC.getCode() if the cached value is empty
-        *
+     * @return The type of the cached value or CellType.NUMERIC.getCode() if the cached value is empty
+     *
      * @deprecated POI 5.0.0, will be removed in 6.0, use getCachedResultTypeEnum until switch to enum is fully done
      */
     @Deprecated
@@ -136,8 +136,8 @@ public final class FormulaRecord extends CellRecord {
 
     /**
      * Returns the type of the cached result
-        *
-        * @return The type of the cached value or CellType.NUMERIC if the cached value is empty
+     *
+     * @return The type of the cached value or CellType.NUMERIC if the cached value is empty
      * @since POI 5.0.0
      */
     public CellType getCachedResultTypeEnum() {
index 8df9ab69a99a52615e5082301090920a726a8ef3..bba36e207abb57df99d3040221d0fd2aa1969824 100644 (file)
@@ -82,14 +82,14 @@ final class TestOperandResolver {
         values.put("18-Jan-2019", 43483.);
 
         for (String str : values.keySet()) {
-               try {
-                               assertEquals(OperandResolver.coerceValueToDouble(new StringEval(str)), values.get(str), 0.00001);
-                       } catch (EvaluationException e) {
-                       fail("While handling: " + str + ". "
-                                               + "This failure can indicate that the wrong locale is used during test-execution, "
-                                               + "ensure you run with english/US via -Duser.language=en -Duser.country=US. "
-                                               + "Having: " + System.getProperty("user.language") + "/" + System.getProperty("user.country"), e);
-                       }
+            try {
+                assertEquals(OperandResolver.coerceValueToDouble(new StringEval(str)), values.get(str), 0.00001);
+            } catch (EvaluationException e) {
+                fail("While handling: " + str + ". "
+                        + "This failure can indicate that the wrong locale is used during test-execution, "
+                        + "ensure you run with english/US via -Duser.language=en -Duser.country=US. "
+                        + "Having: " + System.getProperty("user.language") + "/" + System.getProperty("user.country"), e);
+            }
         }
     }
 
index 6a4d1135eb5c02663d8351508400d2526878e10d..a3bb0684ad1db12eac16a9eece25d60123bcdb23 100644 (file)
@@ -79,8 +79,8 @@ class TestDataFormatter {
         CellFormatResult result = cfmt.apply(cellValueO);
         assertEquals("    1,234.56 ", result.text,
             "This failure can indicate that the wrong locale is used during test-execution, "
-                                       + "ensure you run with english/US via -Duser.language=en -Duser.country=US. "
-                                       + "Having: " + System.getProperty("user.language") + "/" + System.getProperty("user.country"));
+                    + "ensure you run with english/US via -Duser.language=en -Duser.country=US. "
+                    + "Having: " + System.getProperty("user.language") + "/" + System.getProperty("user.country"));
     }
 
     /**