01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.util;
07:
08: /**
09: * This class contains resource data. The dummy implementation is usually not
10: * used: the build process creates the source code from the resources.
11: */
12: class ResourceData {
13: public static void load() {
14: // dummy implementation
15: }
16: }
|