Home | History | Annotate | Download | only in util
      1 package org.bouncycastle.util;
      2 
      3 public class Integers
      4 {
      5     public static Integer valueOf(int value)
      6     {
      7         return Integer.valueOf(value);
      8     }
      9 }
     10