Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
V
vadere
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
110
Issues
110
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vadere
vadere
Commits
0185e149
Commit
0185e149
authored
Dec 20, 2016
by
Jakob Schöttl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings
parent
8d486772
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
VadereGui/src/org/vadere/gui/projectview/control/ActionLoadProject.java
...org/vadere/gui/projectview/control/ActionLoadProject.java
+1
-1
VadereSimulator/src/org/vadere/simulator/projects/migration/incidents/DeleteInArrayIncident.java
...r/projects/migration/incidents/DeleteInArrayIncident.java
+1
-1
No files found.
VadereGui/src/org/vadere/gui/projectview/control/ActionLoadProject.java
View file @
0185e149
...
...
@@ -101,7 +101,7 @@ public class ActionLoadProject extends AbstractAction {
int
[]
stats
=
project
.
getMigrationStats
();
if
(
stats
[
1
]
>
0
||
stats
[
2
]
>
0
)
{
// scenarios: [0] total, [1] legacy'ed, [2] unmigratable
SwingWorker
worker
=
new
SwingWorker
<
Void
,
Void
>()
{
SwingWorker
<
Void
,
Void
>
worker
=
new
SwingWorker
<
Void
,
Void
>()
{
@Override
public
Void
doInBackground
()
{
int
total
=
stats
[
0
];
...
...
VadereSimulator/src/org/vadere/simulator/projects/migration/incidents/DeleteInArrayIncident.java
View file @
0185e149
...
...
@@ -24,6 +24,6 @@ public class DeleteInArrayIncident extends Incident{
public
void
resolve
(
@NotNull
final
Tree
tree
,
@NotNull
StringBuilder
log
)
throws
MigrationException
{
super
.
stillApplies
(
tree
);
tree
.
deleteNodeInArray
(
pathToArray
,
key
);
log
.
append
(
"\t- delete node ["
+
key
+
"] in array "
+
tree
.
pathToString
(
pathToArray
)+
"\n"
);
log
.
append
(
"\t- delete node ["
+
key
+
"] in array "
+
Tree
.
pathToString
(
pathToArray
)
+
"\n"
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment