aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/util/Integers.java
blob: adfa69501031c4be819e7b0bfafe42e26c5d9d78 (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.util;

public class Integers
{
    public static Integer valueOf(int value)
    {
        return Integer.valueOf(value);
    }
}