This commit is contained in:
MaxKey
2021-02-17 09:55:03 +08:00
parent 3bee9b5896
commit aad4e7e878
12 changed files with 209 additions and 91 deletions

View File

@@ -222,7 +222,7 @@ public class InitializeContext extends HttpServlet {
_logger.info("+ Version "
+ WebContext.properties.getProperty("application.formatted-version"));
_logger.info("+");
_logger.info("+ ©Copyright 2018-2020 https://www.maxkey.top/");
_logger.info("+ "+ Character.toString(0xA9) + "Copyright 2018-2021 https://www.maxkey.top/");
_logger.info("+ Licensed under the Apache License, Version 2.0 ");
_logger.info("-----------------------------------------------------------");
}

View File

@@ -0,0 +1,10 @@
package org.maxkey;
public class CopyrightC {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(Character.toString(0xA9));
}
}