You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an example chunk of the resulting Output.java file that contains unstripped comments (lines 73 to 97):
/** * Constructs a new float control object with the given parameters. * The labels for the minimum, maximum, and mid-point values are set * to zero-length strings. * * @param type the kind of control represented by this float control object * @param minimum the smallest value permitted for the control * @param maximum the largest value permitted for the control * @param precision the resolution or granularity of the control. * This is the size of the increment between discrete valid values. * @param updatePeriod the smallest time interval, in microseconds, over which the control * can change from one discrete value to the next during a {@link #shift(float,float,int) shift} * @param initialValue the value that the control starts with when constructed * @param units the label for the units in which the control's values are expressed, * such as "dB" or "frames per second" * * @throws IllegalArgumentException if {@code minimum} is greater * than {@code maximum} or {@code initialValue} does not fall * within the allowable range */protectedFloatControl(Typetype, floatminimum, floatmaximum,
floatprecision, intupdatePeriod, floatinitialValue, Stringunits) {
this(type, minimum, maximum, precision, updatePeriod,
initialValue, units, "", "", "");
}
Thanks
The text was updated successfully, but these errors were encountered:
I found an example of a java file whose comments are not being stripped correctly. You can download the file at: https://hg.openjdk.java.net/jdk8u/jdk8u/jdk/raw-file/c60436725ce4/src/share/classes/javax/sound/sampled/FloatControl.java
Sample code
This is an example chunk of the resulting Output.java file that contains unstripped comments (lines 73 to 97):
Thanks
The text was updated successfully, but these errors were encountered: