~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/patches/jikes_compile_1.patch

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:26:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205012614-qom4xfypgtsqc2xq
Tags: 1.2.3dfsg1-3ubuntu1
Merge with the final Debian release of 1.2.3dfsg1-3, bringing in
fixes to the clean target, better documentation of the libdb4.3
upgrade and build fixes to work with swig1.3_1.3.27.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--- subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Notify.java.orig   2004-06-12 13:01:25.000000000 +0000
2
 
+++ subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Notify.java        2005-04-06 07:28:09.000000000 +0000
3
 
@@ -56,7 +56,7 @@
4
 
          */
5
 
                public static final String getActionName(int action)
6
 
                {
7
 
-                       return actionNames[action];
8
 
+                       return NotifyAction.actionNames[action];
9
 
                }
10
 
 
11
 
     }
12
 
@@ -73,7 +73,7 @@
13
 
          */
14
 
                public static final String getStatusName(int status)
15
 
                {
16
 
-                       return statusNames[status];
17
 
+                       return NotifyStatus.statusNames[status];
18
 
                }
19
 
     }
20
 
 
21