Package primitiveTests

Source Code of primitiveTests.UselessTests

package primitiveTests;

import primitives.graph.Node;

public class UselessTests {
  public static void main(String[] args){
    Node a = new Node("a");
    Node b = new Node("a");
    System.out.println(a==b);
  }
}
TOP

Related Classes of primitiveTests.UselessTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.