Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SableCC STUPS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
SableCC STUPS
Commits
8aa59c9e
Commit
8aa59c9e
authored
7 months ago
by
dgelessus
Browse files
Options
Downloads
Patches
Plain Diff
Simplify a SuppressWarnings annotation
parent
a8802766
No related branches found
No related tags found
Loading
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/sablecc/sablecc/lexer/LexerException.java
+1
-1
1 addition, 1 deletion
src/main/java/org/sablecc/sablecc/lexer/LexerException.java
src/main/resources/org/sablecc/sablecc/lexer.txt
+1
-1
1 addition, 1 deletion
src/main/resources/org/sablecc/sablecc/lexer.txt
with
2 additions
and
2 deletions
src/main/java/org/sablecc/sablecc/lexer/LexerException.java
+
1
−
1
View file @
8aa59c9e
...
...
@@ -2,7 +2,7 @@
package
org.sablecc.sablecc.lexer
;
@SuppressWarnings
(
{
"serial"
}
)
@SuppressWarnings
(
"serial"
)
public
class
LexerException
extends
Exception
{
private
final
int
line
;
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/org/sablecc/sablecc/lexer.txt
+
1
−
1
View file @
8aa59c9e
...
...
@@ -10,7 +10,7 @@ Macro:LexerException
package $0$lexer;
@SuppressWarnings(
{
"serial"
}
)
@SuppressWarnings("serial")
public class LexerException extends Exception
{
private final int line;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment