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

import com.adobe.xfa.gfx.GFXContext;

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