--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/D2F.java 2017-08-08 16:04:53.632418931 -0700 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/D2F.java 2017-08-08 16:04:53.480411322 -0700 @@ -21,34 +21,35 @@ package com.sun.org.apache.bcel.internal.generic; - /** * D2F - Convert double to float *
Stack: ..., value.word1, value.word2 -> ..., result
* - * @author M. Dahm + * @version $Id: D2F.java 1747278 2016-06-07 17:28:43Z britter $ */ public class D2F extends ConversionInstruction { - /** Convert double to float - */ - public D2F() { - super(com.sun.org.apache.bcel.internal.Constants.D2F); - } + + /** Convert double to float + */ + public D2F() { + super(com.sun.org.apache.bcel.internal.Const.D2F); + } - /** - * Call corresponding visitor method(s). The order is: - * Call visitor methods of implemented interfaces first, then - * call methods according to the class hierarchy in descending order, - * i.e., the most specific visitXXX() call comes last. - * - * @param v Visitor object - */ - public void accept(Visitor v) { - v.visitTypedInstruction(this); - v.visitStackProducer(this); - v.visitStackConsumer(this); - v.visitConversionInstruction(this); - v.visitD2F(this); - } + /** + * Call corresponding visitor method(s). The order is: + * Call visitor methods of implemented interfaces first, then + * call methods according to the class hierarchy in descending order, + * i.e., the most specific visitXXX() call comes last. + * + * @param v Visitor object + */ + @Override + public void accept( final Visitor v ) { + v.visitTypedInstruction(this); + v.visitStackProducer(this); + v.visitStackConsumer(this); + v.visitConversionInstruction(this); + v.visitD2F(this); + } }