mbien commented on issue #6592:
URL: https://github.com/apache/netbeans/issues/6592#issuecomment-1771442800

   if `markBranchFlags` leaves one spare flag, `run` can use the spare and it 
seems to work.
   ```diff
   diff --git 
a/ide/libs.git/src/org/netbeans/libs/git/jgit/commands/LogCommand.java 
b/ide/libs.git/src/org/netbeans/libs/git/jgit/commands/LogCommand.java
   index cb9460b..ffef113 100644
   --- a/ide/libs.git/src/org/netbeans/libs/git/jgit/commands/LogCommand.java
   +++ b/ide/libs.git/src/org/netbeans/libs/git/jgit/commands/LogCommand.java
   @@ -210,7 +210,7 @@
                        }
                    } else {
                        usedFlags.add(flagId);
   -                    if (i < 25) {
   +                    if (i < 24) {
                            i = i + 1;
                            RevFlag flag = walk.newFlag(flagId);
                            List<GitBranch> branches = new 
ArrayList<>(allBranches.size());
   
   ```
   crisis averted?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to