2010-03-16 20:14:08 -07:00
|
|
|
|
#if !JAVA
|
|
|
|
|
/*
|
2009-09-07 03:44:18 -07:00
|
|
|
|
* Collections.cs
|
|
|
|
|
* Copyright (c) 2009 kbinani
|
|
|
|
|
*
|
2010-03-16 20:14:08 -07:00
|
|
|
|
* This file is part of bocoree.
|
2009-09-07 03:44:18 -07:00
|
|
|
|
*
|
2010-03-16 20:14:08 -07:00
|
|
|
|
* bocoree is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the BSD License.
|
2009-09-07 03:44:18 -07:00
|
|
|
|
*
|
2010-03-16 20:14:08 -07:00
|
|
|
|
* bocoree is distributed in the hope that it will be useful,
|
2009-09-07 03:44:18 -07:00
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
*/
|
|
|
|
|
//#define VECTOR_TEST
|
2010-03-16 20:14:08 -07:00
|
|
|
|
namespace bocoree.java.util {
|
2009-09-07 03:44:18 -07:00
|
|
|
|
|
|
|
|
|
public static class Collections {
|
|
|
|
|
public static void sort<T>( Vector<T> list ) {
|
|
|
|
|
#if !VECTOR_TEST
|
|
|
|
|
list.Sort();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2010-03-16 20:14:08 -07:00
|
|
|
|
#endif
|