Skip to content

Commit

Permalink
Fixes hierarchy of ReturnStatement interface
Browse files Browse the repository at this point in the history
* IReturnStatement
 * Should extends IAssignmentStatement
  • Loading branch information
Paul Richardson committed Jan 28, 2013
1 parent 5b4d073 commit 5ff9a75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@
*/
package org.teiid.designer.query.sql.proc;

import org.teiid.designer.query.sql.ILanguageVisitor;
import org.teiid.designer.query.sql.lang.IExpression;

/**
*
*/
public interface IReturnStatement {
public interface IReturnStatement<E extends IExpression, LV extends ILanguageVisitor>
extends IAssignmentStatement<E, LV> {

}
2 changes: 1 addition & 1 deletion plugins/teiid/org.teiid.8.2.x
Submodule org.teiid.8.2.x updated from f0bc13 to 0d21a3

0 comments on commit 5ff9a75

Please sign in to comment.