mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-04-26 13:15:45 +02:00
Added toString
This commit is contained in:
parent
02e97fa96b
commit
5d005f9ee0
@ -46,6 +46,18 @@ public class VisualChange
|
||||
return type;
|
||||
}
|
||||
|
||||
public String toString()
|
||||
{
|
||||
StringBuffer res = new StringBuffer();
|
||||
res.append("VisualChange[");
|
||||
res.append("lines=").append(lines);
|
||||
res.append(", columns=").append(columns);
|
||||
res.append(", type=").append(type);
|
||||
res.append("]");
|
||||
|
||||
return res.toString();
|
||||
}
|
||||
|
||||
int lines;
|
||||
int columns;
|
||||
int type;
|
||||
|
Loading…
Reference in New Issue
Block a user