rename: in -> incoming, out -> outgoing

This commit is contained in:
Svetlana Isakova
2014-03-05 19:11:20 +04:00
parent 0a4abd2ebd
commit 5d77ae075c
3 changed files with 8 additions and 8 deletions
@@ -93,8 +93,8 @@ public abstract class AbstractDataFlowTest extends AbstractPseudocodeTest {
@NotNull
private <D> String dumpEdgesData(String prefix, @NotNull Edges<Map<VariableDescriptor, D>> edges) {
return prefix +
" in: " + renderVariableMap(edges.getIn()) +
" out: " + renderVariableMap(edges.getOut());
" in: " + renderVariableMap(edges.getIncoming()) +
" out: " + renderVariableMap(edges.getOutgoing());
}
private <D> String renderVariableMap(Map<VariableDescriptor, D> map) {