Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TTool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
mbe-tools
TTool
Commits
b5eba775
Commit
b5eba775
authored
9 months ago
by
jerray
Browse files
Options
Downloads
Patches
Plain Diff
solve conflict
parent
a8798246
No related branches found
Branches containing commit
No related tags found
1 merge request
!500
Auto security diplodocus
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/ui/avatarbd/AvatarBDBlock.java
+6
-2
6 additions, 2 deletions
src/main/java/ui/avatarbd/AvatarBDBlock.java
with
6 additions
and
2 deletions
src/main/java/ui/avatarbd/AvatarBDBlock.java
+
6
−
2
View file @
b5eba775
...
@@ -981,7 +981,7 @@ public class AvatarBDBlock extends TGCScalableWithInternalComponent implements S
...
@@ -981,7 +981,7 @@ public class AvatarBDBlock extends TGCScalableWithInternalComponent implements S
//addCryptoElements();
//addCryptoElements();
}
}
am
=
AvatarMethod
.
isAValidMethod
(
method
);
am
=
AvatarMethod
.
isAValidMethod
(
method
,
null
,
false
);
if
(
am
!=
null
)
{
if
(
am
!=
null
)
{
//TraceManager.addDev("Setting to " + implementation + " the implementation of " + am);
//TraceManager.addDev("Setting to " + implementation + " the implementation of " + am);
am
.
setImplementationProvided
(
implementation
);
am
.
setImplementationProvided
(
implementation
);
...
@@ -1344,12 +1344,16 @@ public class AvatarBDBlock extends TGCScalableWithInternalComponent implements S
...
@@ -1344,12 +1344,16 @@ public class AvatarBDBlock extends TGCScalableWithInternalComponent implements S
}
}
public
void
addMethodIfApplicable
(
String
methodString
)
{
public
void
addMethodIfApplicable
(
String
methodString
)
{
addMethodIfApplicable
(
methodString
,
tdp
.
getExtraTypes
());
}
public
void
addMethodIfApplicable
(
String
methodString
,
List
<
String
>
extraTypes
)
{
for
(
AvatarMethod
am
:
this
.
myMethods
)
for
(
AvatarMethod
am
:
this
.
myMethods
)
// TODO: replace by a more OO way...
// TODO: replace by a more OO way...
if
(
am
.
toString
().
equals
(
methodString
))
if
(
am
.
toString
().
equals
(
methodString
))
return
;
return
;
AvatarMethod
am
=
AvatarMethod
.
isAValidMethod
(
methodString
);
AvatarMethod
am
=
AvatarMethod
.
isAValidMethod
(
methodString
,
extraTypes
,
true
);
if
(
am
!=
null
)
if
(
am
!=
null
)
this
.
myMethods
.
add
(
am
);
this
.
myMethods
.
add
(
am
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment