Package org.eclipse.jgit.lib.RebaseTodoLine

Examples of org.eclipse.jgit.lib.RebaseTodoLine.Action


      String line = br.readLine();
      while (line != null) {
        int firstBlank = line.indexOf(' ');
        if (firstBlank != -1) {
          String actionToken = line.substring(0, firstBlank);
          Action action = null;
          try {
            action = Action.parse(actionToken);
          } catch (Exception e) {
            // ignore
          }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.lib.RebaseTodoLine.Action

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.