Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d60b9830907b2abce0a37671b4caf8578aa97eed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.jdt.core.internal.tools.unicode;

import java.io.IOException;

public class GenerateIdentifierStartResources {

	public static void main(String[] args) throws IOException {
		UnicodeResourceGenerator generator = new UnicodeResourceGenerator(args, false);
		generator.generate();
	}
}

Back to the top