]> source.dussan.org Git - poi.git/commitdiff
keep javac on JDK 1.5 quiet
authorYegor Kozlov <yegor@apache.org>
Thu, 27 Oct 2011 08:02:03 +0000 (08:02 +0000)
committerYegor Kozlov <yegor@apache.org>
Thu, 27 Oct 2011 08:02:03 +0000 (08:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1189657 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xslf/model/geom/CurveToCommand.java
src/ooxml/java/org/apache/poi/xslf/model/geom/Formula.java
src/ooxml/java/org/apache/poi/xslf/model/geom/LineToCommand.java
src/ooxml/java/org/apache/poi/xslf/model/geom/MoveToCommand.java
src/ooxml/java/org/apache/poi/xslf/model/geom/QuadToCommand.java

index dcfde7e18facfc2348f37c27c4f1ba3a782ecda8..6f342d2ee746df7d19666c7ea140c40d52efbf9a 100644 (file)
@@ -47,6 +47,6 @@ public class CurveToCommand implements PathCommand {
         double y2 = ctx.getValue(arg4);
         double x3 = ctx.getValue(arg5);
         double y3 = ctx.getValue(arg6);
-        path.curveTo(x1, y1, x2, y2, x3, y3);
+        path.curveTo((float)x1, (float)y1, (float)x2, (float)y2, (float)x3, (float)y3);
     }
 }
index a0ba201166c80da03fa4f7a6d07b8d82e5b71d28..0d3b2bbba1a59cd746f12f2d872898ce44279f46 100644 (file)
@@ -39,7 +39,7 @@ public abstract class Formula {
 
     static Map<String, Formula> builtInFormulas = new HashMap<String, Formula>();
     static {
-        // 3 x 360¡ / 4 = 270¡
+        // 3 x 360 / 4 = 270
         builtInFormulas.put("3cd4",  new Formula(){
             @Override
             double evaluate(Context ctx){
@@ -48,7 +48,7 @@ public abstract class Formula {
 
          });
 
-        // 3 x 360¡ / 8 = 135¡
+        // 3 x 360 / 8 = 135
         builtInFormulas.put("3cd8",  new Formula(){
             @Override
             double evaluate(Context ctx){
@@ -57,7 +57,7 @@ public abstract class Formula {
 
          });
 
-        // 5 x 360¡ / 8 = 225¡
+        // 5 x 360 / 8 = 225
         builtInFormulas.put("5cd8",  new Formula(){
             @Override
             double evaluate(Context ctx){
@@ -66,7 +66,7 @@ public abstract class Formula {
 
          });
 
-        // 7 x 360¡ / 8 = 315¡
+        // 7 x 360 / 8 = 315
         builtInFormulas.put("7cd8",  new Formula(){
             @Override
             double evaluate(Context ctx){
@@ -85,7 +85,7 @@ public abstract class Formula {
 
          });
 
-        // 360¡ / 2 = 180¡
+        // 360 / 2 = 180
         builtInFormulas.put("cd2",  new Formula(){
             @Override
             double evaluate(Context ctx){
@@ -94,7 +94,7 @@ public abstract class Formula {
 
          });
 
-        // 360¡ / 4 = 90¡
+        // 360 / 4 = 90
         builtInFormulas.put("cd4",  new Formula(){
             @Override
             double evaluate(Context ctx){
@@ -103,7 +103,7 @@ public abstract class Formula {
 
          });
 
-        // 360¡ / 8 = 45¡
+        // 360 / 8 = 45
         builtInFormulas.put("cd8",  new Formula(){
             @Override
             double evaluate(Context ctx){
index 730636284a5e2ee152aacd40f7a0be5d0fce20a3..3df2e499e1b4c4464a63c7394251cf4b23975f54 100644 (file)
@@ -39,6 +39,6 @@ public class LineToCommand implements PathCommand {
     public void execute(GeneralPath path, Context ctx){
         double x = ctx.getValue(arg1);
         double y = ctx.getValue(arg2);
-        path.lineTo(x, y);
+        path.lineTo((float)x, (float)y);
     }
 }
index 534534dd57f7950c331e35f84d669ffb547aaa84..a5a4b5ce69d9d2cd953bd0b259612828102e5993 100644 (file)
@@ -39,6 +39,6 @@ public class MoveToCommand implements PathCommand {
     public void execute(GeneralPath path, Context ctx){
         double x = ctx.getValue(arg1);
         double y = ctx.getValue(arg2);
-        path.moveTo(x, y);
+        path.moveTo((float)x, (float)y);
     }
 }
index 9a0f2407fa7becaf2bd4a0b7e280fa0fcb553bd7..65fd7d45e4d96b9c2b4aaf17a56d5d7230794434 100644 (file)
@@ -43,6 +43,6 @@ public class QuadToCommand implements PathCommand {
         double y1 = ctx.getValue(arg2);
         double x2 = ctx.getValue(arg3);
         double y2 = ctx.getValue(arg4);
-        path.quadTo(x1, y1, x2, y2);
+        path.quadTo((float)x1, (float)y1, (float)x2, (float)y2);
     }
 }