Initial commit of font compression code into public project.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
// Copyright 2011 Google Inc. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
package com.google.typography.font.compression;
|
||||
|
||||
public final class CommandResult {
|
||||
private final byte[] stdout;
|
||||
|
||||
public CommandResult(byte[] stdout) {
|
||||
this.stdout = stdout;
|
||||
}
|
||||
|
||||
public byte[] getStdout() {
|
||||
return stdout;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user