comparison truffle/com.oracle.truffle.tck/src/com/oracle/truffle/tck/MaxMinObject.java @ 22525:89db2519ef18

Moving implementation classes outside of the tck package to make the Javadoc of the TCK API cleaner
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 23 Dec 2015 07:43:06 +0100
parents e70b20f4bb00
children
comparison
equal deleted inserted replaced
22524:579d21e36582 22525:89db2519ef18
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.tck; 25 package com.oracle.truffle.tck;
26 26
27 import com.oracle.truffle.tck.impl.LongBinaryOperation;
28
27 final class MaxMinObject implements LongBinaryOperation { 29 final class MaxMinObject implements LongBinaryOperation {
28 private final boolean max; 30 private final boolean max;
29 31
30 public MaxMinObject(boolean max) { 32 public MaxMinObject(boolean max) {
31 this.max = max; 33 this.max = max;