Skip to content

Commit

Permalink
Merge pull request #90 from PalladioSimulator/fix_validation
Browse files Browse the repository at this point in the history
Fix validation
  • Loading branch information
dr6817 authored Jul 1, 2024
2 parents 07efd62 + 6496a69 commit 924813e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,11 @@ private void createPCMInterfaces(final Map<OperationInterface, Set<Operation>> i

if (method != null) {
// parameter type
for (final ITypeBinding parameter : method.getParameterTypes()) {
signature = this.handleSignatureDataType(signature, parameter.getName(), parameter,
ITypeBinding[] parameterTypes = method.getParameterTypes();
String[] parameterNames = method.getParameterNames();
for (int i = 0; i < parameterTypes.length; i++) {
final ITypeBinding parameter = parameterTypes[i];
signature = this.handleSignatureDataType(signature, parameterNames[i], parameter,
parameter.getDimensions(), false);
}

Expand Down

0 comments on commit 924813e

Please sign in to comment.