diff --git a/libsrc/avi/src/org/monte/media/math/IntMath.java b/libsrc/avi/src/org/monte/media/math/IntMath.java
index c9cfb0d0d..e504f0f1e 100644
--- a/libsrc/avi/src/org/monte/media/math/IntMath.java
+++ b/libsrc/avi/src/org/monte/media/math/IntMath.java
@@ -30,8 +30,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 && b==0.
*
- * @param a value with with the GCD is to be computed.
- * @param b value with with the GCD is to be computed.
+ * @param a value with the GCD is to be computed.
+ * @param b value with the GCD is to be computed.
* @return GCD(a, b)
*/
public static int gcd(int a, int b) {
@@ -54,8 +54,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 && b==0.
*
- * @param a value with with the GCD is to be computed.
- * @param b value with with the GCD is to be computed.
+ * @param a value with the GCD is to be computed.
+ * @param b value with the GCD is to be computed.
* @return GCD(a, b)
*/
public static long gcd(long a, long b) {
@@ -78,8 +78,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 && b==0.
*
- * @param a value with with the GCD is to be computed.
- * @param b value with with the GCD is to be computed.
+ * @param a value with the GCD is to be computed.
+ * @param b value with the GCD is to be computed.
* @return GCD(a, b)
*/
public static BigInteger gcd(BigInteger a, BigInteger b) {
@@ -103,8 +103,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 || b==0.
*
- * @param a value with with the SCM is to be computed.
- * @param b value with with the SCM is to be computed.
+ * @param a value with the SCM is to be computed.
+ * @param b value with the SCM is to be computed.
* @return SCM(a, b)
*/
public static int scm(int a, int b) {
@@ -140,8 +140,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 || b==0.
*
- * @param a value with with the SCM is to be computed.
- * @param b value with with the SCM is to be computed.
+ * @param a value with the SCM is to be computed.
+ * @param b value with the SCM is to be computed.
* @return SCM(a, b)
*/
public static long scm(long a, long b) {
@@ -180,8 +180,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 || b==0.
*
- * @param a value with with the SCM is to be computed.
- * @param b value with with the SCM is to be computed.
+ * @param a value with the SCM is to be computed.
+ * @param b value with the SCM is to be computed.
* @return SCM(a, b)
*/
public static BigInteger scm(BigInteger a, BigInteger b) {