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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oceandsl
oceandsl-tools
Merge requests
!74
Cleanups.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Cleanups.
reiner
into
main
Overview
0
Commits
1
Pipelines
0
Changes
47
Merged
Cleanups.
Reiner Jung
requested to merge
reiner
into
main
May 26, 2023
Overview
0
Commits
1
Pipelines
0
Changes
47
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
8cc97073
1 commit,
May 26, 2023
47 files
+
197
−
400
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
47
analysis/src/main/java/org/oceandsl/analysis/code/stages/data/CallerCallee.java
→
analysis/src/main/java/org/oceandsl/analysis/code/stages/data/CallerCallee
Entry
.java
+
4
−
4
View file @ 8cc97073
Edit in single-file editor
Open in Web IDE
Show full file
@@ -20,7 +20,7 @@ package org.oceandsl.analysis.code.stages.data;
* @since 1.0
*
*/
public
class
CallerCallee
{
public
class
CallerCallee
Entry
{
private
String
sourcePath
;
private
String
targetPath
;
@@ -29,7 +29,7 @@ public class CallerCallee {
private
final
String
caller
;
private
final
String
callee
;
public
CallerCallee
(
final
String
sourcePath
,
final
String
sourceModule
,
final
String
caller
,
public
CallerCallee
Entry
(
final
String
sourcePath
,
final
String
sourceModule
,
final
String
caller
,
final
String
targetPath
,
final
String
targetModule
,
final
String
callee
)
{
this
.
sourcePath
=
sourcePath
;
this
.
targetPath
=
targetPath
;
@@ -73,8 +73,8 @@ public class CallerCallee {
@Override
public
boolean
equals
(
final
Object
object
)
{
if
(
object
instanceof
CallerCallee
)
{
final
CallerCallee
other
=
(
CallerCallee
)
object
;
if
(
object
instanceof
CallerCallee
Entry
)
{
final
CallerCallee
Entry
other
=
(
CallerCallee
Entry
)
object
;
return
this
.
checkString
(
this
.
sourcePath
,
other
.
getSourcePath
())
&&
this
.
checkString
(
this
.
sourceModule
,
other
.
getSourceModule
())
&&
this
.
checkString
(
this
.
caller
,
other
.
getCaller
())
Loading