Skip to content
Snippets Groups Projects
Commit b5eba775 authored by jerray's avatar jerray
Browse files

solve conflict

parent a8798246
No related branches found
No related tags found
1 merge request!500Auto security diplodocus
...@@ -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);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment