Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move MessageFormat, MessageFormatException, MessagePackException, Mes…
…sageTypeException and MessageTypeCastException to msgpack-value
  • Loading branch information
Dai MIKURUBE committed May 18, 2021
commit bdff80d9a9ce134e3a52aff622cb57742f8aa954
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
//
package org.msgpack.core;

import org.msgpack.core.annotations.VisibleForTesting;
import org.msgpack.value.ValueType;
import org.msgpack.value.MessagePackCode;

Expand Down Expand Up @@ -114,7 +113,6 @@ public static MessageFormat valueOf(final byte b)
* @param b MessageFormat of the given byte
* @return
*/
@VisibleForTesting
static MessageFormat toMessageFormat(final byte b)
{
if (MessagePackCode.isPosFixInt(b)) {
Expand Down