[jruby-joni] 121/194: swap pkeep and state check union members

Hideki Yamane henrich at moszumanska.debian.org
Thu Feb 1 12:04:33 UTC 2018


This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit 3d397054c827c8db9d295f7b0b835e2b47a103e8
Author: Marcin Mielzynski <lopx at gazeta.pl>
Date:   Mon Jan 8 20:12:12 2018 +0100

    swap pkeep and state check union members
---
 src/org/joni/StackEntry.java | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/src/org/joni/StackEntry.java b/src/org/joni/StackEntry.java
index 883f563..09ece1e 100644
--- a/src/org/joni/StackEntry.java
+++ b/src/org/joni/StackEntry.java
@@ -46,21 +46,22 @@ final class StackEntry {
         return E3;
     }
 
-    void setStateCheck(int check) {
-        E4 = check;
+    void setPKeep(int pkeep) {
+        E4 = pkeep;
     }
 
-    int getStateCheck() {
+    int getPKeep() {
         return E4;
     }
 
-    void setPKeep(int pkeep) {
-        E5 = pkeep;
+    void setStateCheck(int check) {
+        E5 = check;
     }
 
-    int getPKeep() {
+    int getStateCheck() {
         return E5;
     }
+
     // second union member
     /* for OP_REPEAT_INC, OP_REPEAT_INC_NG */
     void setRepeatCount(int count) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jruby-joni.git



More information about the pkg-java-commits mailing list