mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[vcs] IDEA-131714 copy full revision number at least until the option
is available for user and/or we guarantee that the short hash we give is enough.
This commit is contained in:
+1
-1
@@ -67,7 +67,7 @@ public class CopyRevisionNumberAction extends DumbAwareAction {
|
||||
return StringUtil.join(revisions, new Function<VcsRevisionNumber, String>() {
|
||||
@Override
|
||||
public String fun(VcsRevisionNumber revision) {
|
||||
return revision instanceof ShortVcsRevisionNumber ? ((ShortVcsRevisionNumber)revision).toShortString() : revision.asString();
|
||||
return revision.asString();
|
||||
}
|
||||
}, " ");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user