All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.mat.util.MessageUtil Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
package org.eclipse.mat.util;

import java.text.MessageFormat;
import org.eclipse.mat.hprof.Messages;

public final class MessageUtil {

  public static String format(Messages message, Object... objects) {
    if (objects.length == 0) {
      return message.pattern;
    }
    return MessageFormat.format(message.pattern, objects);
  }

  private MessageUtil() {
    throw new AssertionError();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy