// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.component;

import javax.annotation.Nonnull;

public class NonSerialized<ECS_TYPE> implements Component<ECS_TYPE>
{
    @Nonnull
    private static final NonSerialized<?> INSTANCE;
    
    public static <ECS_TYPE> NonSerialized<ECS_TYPE> get() {
        return (NonSerialized<ECS_TYPE>)NonSerialized.INSTANCE;
    }
    
    @Override
    public Component<ECS_TYPE> clone() {
        return (Component<ECS_TYPE>)get();
    }
    
    static {
        INSTANCE = new NonSerialized<Object>();
    }
}
