blob: 1ea4cb71668c61b285346a8bba8900074d84f1e1 [file] [log] [blame]
/* GCInfo.java -- Support for creating heap dumps.
Copyright (C) 2007 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package gnu.gcj.util;
import java.security.BasicPermission;
public class UtilPermission extends BasicPermission
{
public UtilPermission(String name)
{
super(name);
}
}