private String nodeWithLabel()

in buildChainExport-server/src/main/java/org/jetbrains/teamcity/buildChainExport/formats/GmlFormat.java [42:47]


  private String nodeWithLabel(@NotNull final GraphNode promotion) {
    return "node [\n" +
        "  id " + promotion.getId() + "\n" +
        "  label \"" + promotion.getName() + "\"\n" +
        "]\n";
  }