Move a @since tag to start of a new line

Javadoc requires block tags to appear at the start of lines.
This commit is contained in:
Sebastian Kürten 2016-11-01 11:46:16 +01:00
parent 8b16ff180a
commit 6a8a93286f
1 changed files with 5 additions and 1 deletions

View File

@ -545,7 +545,11 @@ public enum PredictionMode {
return all; return all;
} }
/** Get union of all alts from configs. @since 4.5.1 */ /**
* Get union of all alts from configs.
*
* @since 4.5.1
*/
public static BitSet getAlts(ATNConfigSet configs) { public static BitSet getAlts(ATNConfigSet configs) {
BitSet alts = new BitSet(); BitSet alts = new BitSet();
for (ATNConfig config : configs) { for (ATNConfig config : configs) {