GFXGraphicContext.java 419 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.gfx;

import com.adobe.xfa.gfx.GFXContext;

public abstract class GFXGraphicContext
implements GFXContext {
    public static boolean match(GFXGraphicContext c1, GFXGraphicContext c2) {
        if (c1 == c2) {
            return true;
        }
        if (c1 == null || c2 == null) {
            return false;
        }
        return c1.equals(c2);
    }
}