summaryrefslogtreecommitdiff
path: root/libjava/gnu/gcj/util/UtilPermission.java
blob: 1ea4cb71668c61b285346a8bba8900074d84f1e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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);
  }
}