gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] libvob/org/nongnu/libvob GraphicsAPI.java VobMa...


From: Tuomas J. Lukka
Subject: [Gzz-commits] libvob/org/nongnu/libvob GraphicsAPI.java VobMa...
Date: Tue, 05 Aug 2003 05:41:06 -0400

CVSROOT:        /cvsroot/libvob
Module name:    libvob
Branch:         
Changes by:     Tuomas J. Lukka <address@hidden>        03/08/05 05:41:06

Modified files:
        org/nongnu/libvob: GraphicsAPI.java VobMap.java 

Log message:
        Interfaces should not use 'public'

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/GraphicsAPI.java.diff?tr1=1.6&tr2=1.7&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/VobMap.java.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: libvob/org/nongnu/libvob/GraphicsAPI.java
diff -u libvob/org/nongnu/libvob/GraphicsAPI.java:1.6 
libvob/org/nongnu/libvob/GraphicsAPI.java:1.7
--- libvob/org/nongnu/libvob/GraphicsAPI.java:1.6       Fri May 16 07:02:40 2003
+++ libvob/org/nongnu/libvob/GraphicsAPI.java   Tue Aug  5 05:41:06 2003
@@ -155,7 +155,7 @@
         * "W_RESIZE" The west-resize cursor type.
         * "WAIT" The wait cursor type.
         */
-       public void setCursor(String name);
+       void setCursor(String name);
 
        /** Set the event handler for the window.
         */
Index: libvob/org/nongnu/libvob/VobMap.java
diff -u libvob/org/nongnu/libvob/VobMap.java:1.2 
libvob/org/nongnu/libvob/VobMap.java:1.3
--- libvob/org/nongnu/libvob/VobMap.java:1.2    Fri Mar  7 06:38:21 2003
+++ libvob/org/nongnu/libvob/VobMap.java        Tue Aug  5 05:41:06 2003
@@ -33,13 +33,13 @@
  */
 
 public interface VobMap extends VobPlacer {
-    public void dump();
+    void dump();
 
     /** Get the topmost vob (the one that was PLACED LAST)
      * in the given coordinate system.
      */
-    public Vob getVobByCS(int i);
+    Vob getVobByCS(int i);
 
-    public void setVS(VobScene vs);
+    void setVS(VobScene vs);
 }
 




reply via email to

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