Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

fix: make SetItem Serializable #101

Merged
merged 2 commits into from
May 11, 2020
Merged
Changes from all commits
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
8 changes: 3 additions & 5 deletions src/main/java/com/xiaomi/infra/pegasus/client/SetItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
// can be found in the LICENSE file in the root directory of this source tree.
package com.xiaomi.infra.pegasus.client;

/**
* @author qinzuoyan
* <p>Set item.
*/
public class SetItem {
import java.io.Serializable;

public class SetItem implements Serializable {
public byte[] hashKey = null;
public byte[] sortKey = null;
public byte[] value = null;
Expand Down