Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BattleArena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Scherbaum Maximilian
BattleArena
Merge requests
!14
Finishing Touch II
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Finishing Touch II
DataBase
into
development
Overview
0
Commits
2
Pipelines
0
Changes
5
Merged
Schuh Martin
requested to merge
DataBase
into
development
1 year ago
Overview
0
Commits
2
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
development
development (base)
and
latest version
latest version
647a0a3f
2 commits,
1 year ago
5 files
+
47
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/main/java/de/hdm_stuttgart/battlearena/Model/DataStorage/Classes/Utilities/Parser.java
+
8
−
0
Options
@@ -350,4 +350,12 @@ public class Parser {
}
}
public
static
void
volumeValid
(
int
volume
)
throws
ParserException
{
if
(
volume
>
100
|
volume
<
0
){
throw
new
ParserException
(
"Volume must be between 0 and 100!"
);
}
}
}
Loading