blob: 4f1e787df571a42ee417e35d79c29c3e1d69affa [file] [log] [blame]
// 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;
}
}