Skip to content

Commit

Permalink
Minor msgs printing
Browse files Browse the repository at this point in the history
  • Loading branch information
baoluomeng committed Jul 12, 2022
1 parent b1f5586 commit 6126c3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4486,7 +4486,7 @@ else if(dataPort.isOut()) {
dtype = resolveAADLDataImplementationType(aadlDImpl, model, dataTypeDecl);
} else {
dtype = null;
System.out.println("Unresolved/unexpected Named Element for a data port: " + dataPort);
System.out.println("Warning: No data type is declared for a data port: " + dataPort);
}
verdict.vdm.vdm_model.Port newPort = new verdict.vdm.vdm_model.Port();
newPort.setProbe(false);
Expand Down Expand Up @@ -4550,7 +4550,7 @@ else if(dataPort.isOut()) {
dtype = resolveAADLDataImplementationType(aadlDImpl, model, dataTypeDecl);
} else {
dtype = null;
System.out.println("Unresolved/unexpected Named Element for an event data port: " + dataPort);
System.out.println("Warning: No data type is declared for an event data port: " + dataPort);
}
if(dtype != null) {
newPort.setType(dtype);
Expand Down

0 comments on commit 6126c3e

Please sign in to comment.