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

org.inigma.shared.message.NoopMessageSource Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package org.inigma.shared.message;

import java.text.MessageFormat;
import java.util.Locale;

import org.springframework.context.support.AbstractMessageSource;

/**
 * @author Sejal Patel
 * @since 12/20/13 11:57 PM
 */
public class NoopMessageSource extends AbstractMessageSource {
    @Override
    protected MessageFormat resolveCode(String code, Locale locale) {
        return new MessageFormat(code, locale);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy