mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
compile fix: implementation for RefGroup changed interface
This commit is contained in:
@@ -107,6 +107,11 @@ public class HgRefManager implements VcsLogRefManager {
|
||||
@Override
|
||||
public RefGroup fun(final VcsRef ref) {
|
||||
return new RefGroup() {
|
||||
@Override
|
||||
public boolean isExpanded() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public String getName() {
|
||||
@@ -118,6 +123,12 @@ public class HgRefManager implements VcsLogRefManager {
|
||||
public List<VcsRef> getRefs() {
|
||||
return Collections.singletonList(ref);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public Color getBgColor() {
|
||||
return HEAD_COLOR;
|
||||
}
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user