Skip to content

Commit

Permalink
Minor changes resulting from review
Browse files Browse the repository at this point in the history
  • Loading branch information
maikelsteneker committed Jan 21, 2021
1 parent 55598d8 commit 76566b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Expand Up @@ -4,6 +4,8 @@

package net.sourceforge.pmd.lang.ast;

import net.sourceforge.pmd.annotation.Experimental;

/**
* Represents a language-independent token such as constants, values language reserved keywords, or comments.
*/
Expand Down Expand Up @@ -57,5 +59,6 @@ public interface GenericToken {
*
* The semantics of this kind depend on the language.
*/
@Experimental
int getKind();
}
Expand Up @@ -35,6 +35,7 @@ public class CPPTokenizer extends JavaCCTokenizer {
* @param properties the properties
* @see #OPTION_SKIP_BLOCKS
* @see #OPTION_SKIP_BLOCKS_PATTERN
* @see #OPTION_IGNORE_LITERAL_SEQUENCES
*/
public void setProperties(Properties properties) {
skipBlocks = Boolean.parseBoolean(properties.getProperty(OPTION_SKIP_BLOCKS, Boolean.TRUE.toString()));
Expand Down

0 comments on commit 76566b7

Please sign in to comment.