Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Verification for Decision Model and Notation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Blatt
Verification for Decision Model and Notation
Commits
3a296bbe
Commit
3a296bbe
authored
5 years ago
by
Jonas Blatt
Browse files
Options
Downloads
Patches
Plain Diff
remove unused supplier
parent
c6ffc3fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dmnverifierapi/src/main/java/de/unikoblenz/fgbks/core/dmn/verification/verifier/impl/LonelyDataInputVerifier.java
+2
-3
2 additions, 3 deletions
...n/verification/verifier/impl/LonelyDataInputVerifier.java
with
2 additions
and
3 deletions
dmnverifierapi/src/main/java/de/unikoblenz/fgbks/core/dmn/verification/verifier/impl/LonelyDataInputVerifier.java
+
2
−
3
View file @
3a296bbe
...
...
@@ -9,12 +9,11 @@ import de.unikoblenz.fgbks.core.dmn.verification.result.VerificationResultEntryE
import
de.unikoblenz.fgbks.core.dmn.verification.verifier.AbstractVerifier
;
import
de.unikoblenz.fgbks.core.dmn.verification.verifier.DmnVerifier
;
import
de.unikoblenz.fgbks.core.dmn.verification.verifier.types.LonelyDataInputVerification
;
import
java.util.function.Supplier
;
@DmnVerifier
(
verifierType
=
LonelyDataInputVerification
.
class
)
public
class
LonelyDataInputVerifier
extends
AbstractVerifier
{
private
Supplier
<
Name
>
defaultName
=
()
->
new
Name
(
"[no name]"
);
private
Name
defaultName
=
new
Name
(
"[no name]"
);
@Override
protected
void
doVerification
()
{
...
...
@@ -26,7 +25,7 @@ public class LonelyDataInputVerifier extends AbstractVerifier {
.
addToEntry
(
VerificationClassification
.
WARNING
,
"Input data \"%s\" has no outgoing connections to at least one decision node."
,
i
.
getName
().
orElse
Get
(
defaultName
));
i
.
getName
().
orElse
(
defaultName
));
}
}
}
...
...
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