VirtualBox

Changeset 47850 in vbox


Ignore:
Timestamp:
Aug 19, 2013 4:42:37 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
88144
Message:

Main: attempt to fix xpcom build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/glue-java.xsl

    r46478 r47850  
    26872687    }
    26882688
     2689    public static List<Short> wrap(short[] values)
     2690    {
     2691        if (values == null)
     2692            return null;
     2693
     2694        List<Short> ret = new ArrayList<Short>(values.length);
     2695        for (short v : values)
     2696        {
     2697            ret.add(v);
     2698        }
     2699        return ret;
     2700    }
     2701
    26892702    public static List<Integer> wrap(int[] values)
    26902703    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette