package com; import static com.StaticImportMe.doStaticImportOnMe; public class StaticImport { /** * @param args */ public static void main(String[] args) { /** * No need to use StaticImportMe.doStaticImportOnMe(args[0]); */ doStaticImportOnMe(args[0]); } }
No comments:
Post a Comment