فهرست منبع

AppSettings: solve 2 javadoc diagnostics (#1770)

Stephen Gold 3 سال پیش
والد
کامیت
85afd6c98c
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      jme3-core/src/main/java/com/jme3/system/AppSettings.java

+ 3 - 3
jme3-core/src/main/java/com/jme3/system/AppSettings.java

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2021 jMonkeyEngine
+ * Copyright (c) 2009-2022 jMonkeyEngine
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -1025,7 +1025,7 @@ public final class AppSettings extends HashMap<String, Object> {
      * Get the width of the window
      *
      * @return the width of the window (in pixels)
-     * @see #setWindowWidth(int)
+     * @see #setWindowSize(int, int)
      */
     public int getWindowWidth() {
         int w = getInteger("WindowWidth");
@@ -1036,7 +1036,7 @@ public final class AppSettings extends HashMap<String, Object> {
      * Get the height of the window
      *
      * @return the height of the window (in pixels)
-     * @see #setWindowHeight(int)
+     * @see #setWindowSize(int, int)
      */
     public int getWindowHeight() {
         int h = getInteger("WindowHeight");