view src/alice/codesegment/SingletonMessage.java @ 176:4658bf530834 working

remove ant warning
author e095732
date Tue, 29 Jan 2013 10:30:41 +0900
parents 6773146b353c
children
line wrap: on
line source

package alice.codesegment;

import org.msgpack.MessagePack;

public class SingletonMessage {
	
	private static final MessagePack instance = new MessagePack(); 
	
	public static MessagePack getInstance(){
		return instance;
	}

}