Skip to content

Commit

Permalink
TEIID-3951 correcting the set call
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Feb 4, 2016
1 parent ec5b9be commit f5680c4
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,7 @@ public List getProjectedSymbols(){
ElementSymbol symbol = parameter.getParameterSymbol();
symbol.setGroupSymbol(this.getGroup());
//should be first among parameters, which we'll ensure
if (result.size() == size) {
result.add(symbol);
} else {
result.set(size, symbol);
}
result.add(size, symbol);
} else if(parameter.getParameterType() == ParameterInfo.INOUT || parameter.getParameterType() == ParameterInfo.OUT){
ElementSymbol symbol = parameter.getParameterSymbol();
symbol.setGroupSymbol(this.getGroup());
Expand Down

0 comments on commit f5680c4

Please sign in to comment.