Here you can find the source of printLines(List
Parameter | Description |
---|---|
lines | Lines to print to stdout |
public static void printLines(List<String> lines)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { /**/*from ww w .j a v a 2 s. c o m*/ * Print the output lines * @param lines Lines to print to stdout */ public static void printLines(List<String> lines) { for (String s : lines) { System.out.println(s); } } }