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