mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-24 06:06:45 +01:00
16 lines
276 B
Java
16 lines
276 B
Java
|
package com.intellectualcrafters.plot.util;
|
||
|
|
||
|
import java.util.HashMap;
|
||
|
import java.util.Map;
|
||
|
import java.util.regex.Pattern;
|
||
|
|
||
|
public class RegExUtil {
|
||
|
|
||
|
public static Map<String, Pattern> compiledPatterns;
|
||
|
|
||
|
static {
|
||
|
compiledPatterns = new HashMap<>();
|
||
|
}
|
||
|
|
||
|
}
|