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

package org.bson.json;

import org.bson.types.ObjectId;

class ShellObjectIdConverter implements Converter<ObjectId>
{
    @Override
    public void convert(final ObjectId value, final StrictJsonWriter writer) {
        writer.writeRaw(String.format("ObjectId(\"%s\")", value.toHexString()));
    }
}
