blob: 4f1e787df571a42ee417e35d79c29c3e1d69affa [file] [log] [blame]
Raph Leviendcecdd82012-03-23 11:21:16 -07001// Copyright 2011 Google Inc. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package com.google.typography.font.compression;
6
7public final class CommandResult {
8 private final byte[] stdout;
9
10 public CommandResult(byte[] stdout) {
11 this.stdout = stdout;
12 }
13
14 public byte[] getStdout() {
15 return stdout;
16 }
17}
18