mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[log] Fix misprint in diagnostics for "No references pointing to head" error
This commit is contained in:
@@ -74,7 +74,7 @@ public class GraphTableModel extends AbstractTableModel {
|
||||
sb.append("LAST 100 COMMITS:\n");
|
||||
List<GraphCommit<Integer>> commits = myDataPack.getPermanentGraph().getAllCommits();
|
||||
for (int i = 0; i < 100 && i < commits.size(); i++) {
|
||||
GraphCommit<Integer> commit = commits.get(0);
|
||||
GraphCommit<Integer> commit = commits.get(i);
|
||||
sb.append(myDataHolder.getHash(commit.getId()) + "\n");
|
||||
}
|
||||
sb.append("\nALL REFS:\n");
|
||||
|
||||
Reference in New Issue
Block a user