Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
oceandsl-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
oceandsl
oceandsl-tools
Merge requests
!33
Update to new sar input format
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update to new sar input format
update-to-new-sar-input-format
into
main
Overview
0
Commits
4
Pipelines
3
Changes
289+
Merged
Reiner Jung
requested to merge
update-to-new-sar-input-format
into
main
2 years ago
Overview
0
Commits
4
Pipelines
3
Changes
8
Expand
0
0
Merge request reports
Compare
version 2
version 2
a1426fdf
2 years ago
version 1
56c69364
2 years ago
main (base)
and
latest version
latest version
779d9c76
4 commits,
2 years ago
version 2
a1426fdf
3 commits,
2 years ago
version 1
56c69364
2 commits,
2 years ago
Show latest version
8 files
+
162
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
tools/dar/src/main/java/org/oceandsl/tools/dar/signature/processor/ModuleSignatureProcessor.java
+
1
−
1
Options
@@ -32,7 +32,7 @@ public class ModuleSignatureProcessor extends AbstractSignatureProcessor {
@Override
public
void
processSignatures
(
final
String
componentSignature
,
final
String
operationSignature
)
{
final
String
[]
values
=
operationSignature
.
split
(
"_MOD_"
);
final
String
[]
values
=
operationSignature
.
split
(
this
.
caseInsensitive
?
"_mod_"
:
"_MOD_"
);
if
(
values
.
length
==
2
)
{
this
.
componentSignature
=
this
.
convertToLowerCase
(
this
.
removeLeadingUnderscore
(
this
.
removeTrailingUnderscore
(
values
[
0
])));
Loading