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

Commit

Permalink
fix: make SetItem Serializable (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wu Tao authored May 11, 2020
1 parent 2d65cc6 commit 1f746ae
Showing 1 changed file with 3 additions and 5 deletions.
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

0 comments on commit 1f746ae

Please sign in to comment.