You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2020/03/31 00:38:50 UTC

svn commit: r1875897 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java

Author: rwhitcomb
Date: Tue Mar 31 00:38:50 2020
New Revision: 1875897

URL: http://svn.apache.org/viewvc?rev=1875897&view=rev
Log:
Correct a wrong @throws value.


Modified:
    pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java?rev=1875897&r1=1875896&r2=1875897&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java Tue Mar 31 00:38:50 2020
@@ -272,7 +272,7 @@ public abstract class Theme {
      * @return The current theme, as determined by the {@linkplain #PROVIDER_NAME
      * theme provider}.
      *
-     * @throws IllegalStateException If a theme has not been installed.
+     * @throws ThemeNotFoundException If a theme has not been installed.
      */
     public static Theme getTheme() {
         if (theme == null) {