Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static byte[] removeLengthByte(byte[] base) {
        byte[] value = new byte[base.length - 1];
        System.arraycopy(base, 1, value, 0, base.length - 1);
        return value;
    }
}