Skip to content
Snippets Groups Projects
Commit f4c3071c authored by Jens Bendisposto's avatar Jens Bendisposto
Browse files

suppress warnings

parent 9389466e
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ package org.sablecc.sablecc.node;
import java.util.*;
import org.sablecc.sablecc.analysis.*;
@SuppressWarnings({"rawtypes","unchecked"})
public abstract class Node implements Switchable, Cloneable
{
private Node parent;
......
......@@ -10,7 +10,7 @@ Macro:LexerException
package $0$;
@SuppressWarnings({"serial"})
public class LexerException extends Exception
{
public LexerException(String message)
......@@ -32,7 +32,7 @@ import $1$.*;
import de.hhu.stups.sablecc.patch.*;
@SuppressWarnings({"unused"})
public class Lexer implements ITokenListContainer
{
protected Token token;
......
......@@ -21,7 +21,7 @@ import java.io.DataInputStream;
import java.io.BufferedInputStream;
import java.io.IOException;
@SuppressWarnings({"rawtypes","unchecked","unused"})
public class Parser implements IParser
{
public final Analysis ignoredTokens = new AnalysisAdapter();
......@@ -666,7 +666,7 @@ package $0$;
import $1$.*;
@SuppressWarnings("serial")
public class ParserException extends Exception
{
Token token;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment