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

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