Home / Function/ postProcessLines() — spring-boot Function Reference

postProcessLines() — spring-boot Function Reference

Architecture documentation for the postProcessLines() function in CommandLineInvoker.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  dbb2e128_be59_ebc2_a2f4_1bf3c88fe9c7["postProcessLines()"]
  9962ad2e_e7f4_2682_22b8_3210450b7f71["getOutput()"]
  9962ad2e_e7f4_2682_22b8_3210450b7f71 -->|calls| dbb2e128_be59_ebc2_a2f4_1bf3c88fe9c7
  fb0f6ac0_6aa3_e825_c305_0a967e58b750["getErrorOutput()"]
  fb0f6ac0_6aa3_e825_c305_0a967e58b750 -->|calls| dbb2e128_be59_ebc2_a2f4_1bf3c88fe9c7
  b4c2c04d_027f_ca96_93f5_b3b8a70a5fb7["getStandardOutput()"]
  b4c2c04d_027f_ca96_93f5_b3b8a70a5fb7 -->|calls| dbb2e128_be59_ebc2_a2f4_1bf3c88fe9c7
  style dbb2e128_be59_ebc2_a2f4_1bf3c88fe9c7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

cli/spring-boot-cli/src/intTest/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java lines 159–168

		private String postProcessLines(List<String> lines) {
			StringWriter out = new StringWriter();
			PrintWriter printOut = new PrintWriter(out);
			for (String line : lines) {
				if (!line.startsWith("Maven settings decryption failed")) {
					printOut.println(line);
				}
			}
			return out.toString();
		}

Domain

Subdomains

Frequently Asked Questions

What does postProcessLines() do?
postProcessLines() is a function in the spring-boot codebase.
What calls postProcessLines()?
postProcessLines() is called by 3 function(s): getErrorOutput, getOutput, getStandardOutput.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free