compile fix: implementation for RefGroup changed interface

This commit is contained in:
Nadya Zabrodina
2013-10-30 03:40:49 +04:00
parent 00f7ea1e4b
commit 97cfae5b5f
@@ -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;
}
};
}
});