Issue 508
[zxing.git] / core / src / com / google / zxing / common / Collections.java
index 4518b60..319ebfe 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 Google Inc.
+ * Copyright 2007 ZXing authors
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,7 +19,10 @@ package com.google.zxing.common;
 import java.util.Vector;
 
 /**
- * This is basically a substitute for <code>java.util.Collections</code>.
+ * <p>This is basically a substitute for <code>java.util.Collections</code>, which is not
+ * present in MIDP 2.0 / CLDC 1.1.</p>
+ *
+ * @author Sean Owen
  */
 public final class Collections {
 
@@ -29,9 +32,9 @@ public final class Collections {
   /**
    * Sorts its argument (destructively) using insert sort; in the context of this package
    * insertion sort is simple and efficient given its relatively small inputs.
-   * 
-   * @param vector
-   * @param comparator
+   *
+   * @param vector vector to sort
+   * @param comparator comparator to define sort ordering
    */
   public static void insertionSort(Vector vector, Comparator comparator) {
     int max = vector.size();