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

package com.hypixel.hytale.server.npc.asset.builder.holder;

import com.hypixel.hytale.server.npc.util.expression.ExecutionContext;

public class DoubleHolder extends DoubleHolderBase
{
    @Override
    public void validate(final ExecutionContext context) {
        this.get(context);
    }
    
    public double get(final ExecutionContext executionContext) {
        final double value = this.rawGet(executionContext);
        this.validateRelations(executionContext, value);
        return value;
    }
}
