Mercurial > hg > Members > tatsuki > Alice
view src/alice/codesegment/SingletonMessage.java @ 215:1fd7067f0044 working
remove conversion flag
author | one |
---|---|
date | Wed, 27 Mar 2013 18:35:43 +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; } }