Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Merge requests
!1095
Resolve "compartment alias identifiers in CD must have at least 2 characters"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "compartment alias identifiers in CD must have at least 2 characters"
1204-compartment-identifier-alias
into
devel_14.0.x
Overview
0
Commits
1
Pipelines
1
Changes
6
Merged
Piotr Gawron
requested to merge
1204-compartment-identifier-alias
into
devel_14.0.x
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
6
Expand
Closes
#1204 (closed)
0
0
Merge request reports
Compare
devel_14.0.x
version 2
071bd368
4 years ago
version 1
071bd368
4 years ago
devel_14.0.x (base)
and
latest version
latest version
071bd368
1 commit,
4 years ago
version 2
071bd368
2 commits,
4 years ago
version 1
071bd368
5 commits,
4 years ago
6 files
+
64
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
converter-CellDesigner/src/main/java/lcsb/mapviewer/converter/model/celldesigner/alias/CompartmentAliasXmlParser.java
+
1
−
1
Options
@@ -130,7 +130,7 @@ public class CompartmentAliasXmlParser extends AbstractAliasXmlParser<Compartmen
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
"<celldesigner:compartmentAlias "
);
sb
.
append
(
"id=\""
+
compartment
.
getEle
ment
Id
(
)
+
"\" "
);
sb
.
append
(
"id=\""
+
elements
.
getCompartmentAliasId
(
compart
ment
)
+
"\" "
);
sb
.
append
(
"compartment=\""
+
elements
.
getElementId
(
compartment
)
+
"\">\n"
);
boolean
bounds
=
true
;
Loading