From: <tho...@us...> - 2013-11-13 17:19:53
|
Revision: 7538 http://bigdata.svn.sourceforge.net/bigdata/?rev=7538&view=rev Author: thompsonbry Date: 2013-11-13 17:19:47 +0000 (Wed, 13 Nov 2013) Log Message: ----------- @Override annotations. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/join/JVMHashJoinUtility.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/join/JVMHashJoinUtility.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/join/JVMHashJoinUtility.java 2013-11-13 17:19:00 UTC (rev 7537) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/join/JVMHashJoinUtility.java 2013-11-13 17:19:47 UTC (rev 7538) @@ -177,6 +177,7 @@ * Human readable representation of the {@link IHashJoinUtility} metadata * (but not the solutions themselves). */ + @Override public String toString() { final StringBuilder sb = new StringBuilder(); @@ -336,22 +337,27 @@ } + @Override public JoinTypeEnum getJoinType() { return joinType; } + @Override public IVariable<?> getAskVar() { return askVar; } + @Override public IVariable<?>[] getJoinVars() { return joinVars; } + @Override public IVariable<?>[] getSelectVars() { return selectVars; } + @Override public IConstraint[] getConstraints() { return constraints; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |