view src/alice/codesegment/SingletonMessage.java @ 139:f995396f2af7 working

remove bug
author sugi
date Tue, 18 Sep 2012 16:19:50 +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;
	}

}