Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
sarah.grebing
ProofScriptParser
Commits
f20e8a41
Commit
f20e8a41
authored
Nov 10, 2017
by
Sarah Grebing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor
parent
7ace485e
Pipeline
#15285
failed with stages
in 1 minute and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
rt-key/src/main/java/edu/kit/iti/formal/psdbg/LabelFactory.java
.../src/main/java/edu/kit/iti/formal/psdbg/LabelFactory.java
+4
-2
No files found.
rt-key/src/main/java/edu/kit/iti/formal/psdbg/LabelFactory.java
View file @
f20e8a41
...
@@ -24,6 +24,8 @@ public class LabelFactory {
...
@@ -24,6 +24,8 @@ public class LabelFactory {
public
static
String
RANGE_SEPARATOR
=
" -- "
;
public
static
String
RANGE_SEPARATOR
=
" -- "
;
public
static
String
END_MARKER
=
"$$"
;
/**
/**
* Create Label for goalview according to function that is passed.
* Create Label for goalview according to function that is passed.
* The following functions can be given:
* The following functions can be given:
...
@@ -53,7 +55,7 @@ public class LabelFactory {
...
@@ -53,7 +55,7 @@ public class LabelFactory {
}
}
cur
=
cur
.
parent
();
cur
=
cur
.
parent
();
}
while
(
cur
!=
null
);
}
while
(
cur
!=
null
);
sb
.
append
(
"
END
"
);
sb
.
append
(
END
_MARKER
);
return
sb
.
toString
();
return
sb
.
toString
();
}
}
...
@@ -70,7 +72,7 @@ public class LabelFactory {
...
@@ -70,7 +72,7 @@ public class LabelFactory {
}
}
node
=
p
;
node
=
p
;
}
}
sb
.
append
(
"
END
"
);
sb
.
append
(
END
_MARKER
);
return
sb
.
toString
();
return
sb
.
toString
();
}
}
...
...
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