MCPcopy Create free account
hub / github.com/google/guice / formatText

Method formatText

core/src/com/google/inject/internal/Messages.java:290–299  ·  view source on GitHub ↗
(String text, FormatOptions... options)

Source from the content-addressed store, hash-verified

288 }
289
290 private static final String formatText(String text, FormatOptions... options) {
291 if (!InternalFlags.enableColorizeErrorMessages()) {
292 return text;
293 }
294 return String.format(
295 "%s%s%s",
296 Arrays.stream(options).map(option -> option.ansiCode).collect(joining()),
297 text,
298 FormatOptions.RESET.ansiCode);
299 }
300
301 public static final String bold(String text) {
302 return formatText(text, FormatOptions.BOLD);

Callers 4

boldMethod · 0.95
redBoldMethod · 0.95
underlineMethod · 0.95
faintMethod · 0.95

Calls 3

mapMethod · 0.80
formatMethod · 0.45

Tested by

no test coverage detected