a bug fix...
[IRC.git] / Robust / src / Util / JoinOpNop.java
1 ////////////////////////////////////////////
2 //
3 //  This join op is useful for multiviewmaps
4 //  where the multikey holds all useful values
5 //  and the templated value of the map is ignored.
6 //  When used this way, the multiviewmap functions
7 //  like an indexed set of tuples.
8 //
9 ////////////////////////////////////////////
10
11 package Util;
12
13 public class JoinOpNop implements JoinOp<Object> {
14   public Object join( Object a, Object b ) {
15     return null;
16   }
17 }