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

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

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