gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz/gzz/vob DefaultVobMatcher.java


From: Benja Fallenstein
Subject: [Gzz-commits] gzz/gzz/vob DefaultVobMatcher.java
Date: Wed, 25 Sep 2002 14:29:53 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Benja Fallenstein <address@hidden>      02/09/25 14:29:53

Modified files:
        gzz/vob        : DefaultVobMatcher.java 

Log message:
        fix

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/vob/DefaultVobMatcher.java.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: gzz/gzz/vob/DefaultVobMatcher.java
diff -c gzz/gzz/vob/DefaultVobMatcher.java:1.2 
gzz/gzz/vob/DefaultVobMatcher.java:1.3
*** gzz/gzz/vob/DefaultVobMatcher.java:1.2      Wed Sep 25 14:18:51 2002
--- gzz/gzz/vob/DefaultVobMatcher.java  Wed Sep 25 14:29:53 2002
***************
*** 1,6 ****
  /*
  DefaultVobMatcher.java
!  *    
   *    Copyright (c) 2002, Tuomas J. Lukka
   *
   *    You may use and distribute under the terms of either the GNU Lesser
--- 1,6 ----
  /*
  DefaultVobMatcher.java
!  *
   *    Copyright (c) 2002, Tuomas J. Lukka
   *
   *    You may use and distribute under the terms of either the GNU Lesser
***************
*** 8,14 ****
   *    at your choice, any later version. Alternatively, you may use and
   *    distribute under the terms of the XPL.
   *
!  *    See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of 
   *    the licenses.
   *
   *    This software is distributed in the hope that it will be useful,
--- 8,14 ----
   *    at your choice, any later version. Alternatively, you may use and
   *    distribute under the terms of the XPL.
   *
!  *    See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of
   *    the licenses.
   *
   *    This software is distributed in the hope that it will be useful,
***************
*** 79,87 ****
          DefaultVobMatcher other = (DefaultVobMatcher)other0;
        int[] interpList = new int[maxcs];
        for(int i=0; i<maxcs; i++) {
!           if(keys[i] == null) continue; // default: zero
!           int ind = other.getCSByInt(keys[i]);
!           interpList[i] = ind;
        }
        return interpList;
      }
--- 79,88 ----
          DefaultVobMatcher other = (DefaultVobMatcher)other0;
        int[] interpList = new int[maxcs];
        for(int i=0; i<maxcs; i++) {
!           if(keys[i] == null)
!               interpList[i] = -1;
!           else
!               interpList[i] = other.getCSByInt(keys[i]);
        }
        return interpList;
      }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]