// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.jdisc.bundle.l; import java.util.concurrent.Callable; /** * @author Simon Thoresen Hult */ public class CertificateL implements Callable { @Override public Integer call() throws Exception { return 2; } }