Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import android.support.annotation.Nullable;
public class Main {
public static boolean longsEqual(@Nullable Long one, @Nullable Long another) {
return !(one != null ? !one.equals(another) : another != null);
}
}