Initial commit of font compression code into public project.

This commit is contained in:
Raph Levien
2012-03-23 11:21:16 -07:00
commit dcecdd883a
49 changed files with 8454 additions and 0 deletions
@@ -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;
}
}