forked from jasder/antlr
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:
parent
8b16ff180a
commit
6a8a93286f
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue