Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Shorts.java « util « bouncycastle « org « jdk1.4 « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71f04fd029f2aabe7abff87a1c1171b861b049ad (plain)
1
2
3
4
5
6
7
8
9
package org.bouncycastle.util;

public class Shorts
{
    public static Short valueOf(short value)
    {
        return new Short(value);
    }
}