~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/patches/jikes_compile_2.patch

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2005-06-29 13:09:32 UTC
  • mfrom: (1.1.1 upstream) (0.1.2 sarge)
  • Revision ID: james.westby@ubuntu.com-20050629130932-vzt4595e7q8wtfqy
Tags: 1.2.0-1ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Status.java.orig   2004-09-06 05:56:11.000000000 +0000
 
2
+++ subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Status.java        2005-04-06 07:47:48.000000000 +0000
 
3
@@ -490,31 +490,31 @@
 
4
         {
 
5
             switch (kind)
 
6
             {
 
7
-            case none:
 
8
+            case StatusKind.none:
 
9
                 return "non-svn";
 
10
-            case normal:
 
11
+            case StatusKind.normal:
 
12
                 return "normal";
 
13
-            case added:
 
14
+            case StatusKind.added:
 
15
                 return "added";
 
16
-            case missing:
 
17
+            case StatusKind.missing:
 
18
                 return "missing";
 
19
-            case deleted:
 
20
+            case StatusKind.deleted:
 
21
                 return "deleted";
 
22
-            case replaced:
 
23
+            case StatusKind.replaced:
 
24
                 return "replaced";
 
25
-            case modified:
 
26
+            case StatusKind.modified:
 
27
                 return "modified";
 
28
-            case merged:
 
29
+            case StatusKind.merged:
 
30
                 return "merged";
 
31
-            case conflicted:
 
32
+            case StatusKind.conflicted:
 
33
                 return "conflicted";
 
34
-            case ignored:
 
35
+            case StatusKind.ignored:
 
36
                 return "ignored";
 
37
-            case incomplete:
 
38
+            case StatusKind.incomplete:
 
39
                 return "incomplete";
 
40
-            case external:
 
41
+            case StatusKind.external:
 
42
                 return "external";
 
43
-            case unversioned:
 
44
+            case StatusKind.unversioned:
 
45
             default:
 
46
                 return "unversioned";
 
47
             }
 
48