mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-23 08:29:15 +00:00
21 lines
464 B
Java
21 lines
464 B
Java
/* 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);
|
|
}
|
|
}
|