File tree Expand file tree Collapse file tree 3 files changed +23
-26
lines changed
src/main/java/org/primefaces/showcase Expand file tree Collapse file tree 3 files changed +23
-26
lines changed Original file line number Diff line number Diff line change 149
149
</plugins >
150
150
</pluginManagement >
151
151
<plugins >
152
- <plugin >
153
- <groupId >org.apache.maven.plugins</groupId >
154
- <artifactId >maven-compiler-plugin</artifactId >
155
- <version >3.12.1</version >
156
- <configuration >
157
- <source >1.8</source >
158
- <target >1.8</target >
159
- <encoding >${project.build.sourceEncoding} </encoding >
160
- <annotationProcessorPaths >
161
- <path >
162
- <groupId >org.projectlombok</groupId >
163
- <artifactId >lombok</artifactId >
164
- <version >1.18.30</version >
165
- </path >
166
- <path >
167
- <groupId >io.quarkus</groupId >
168
- <artifactId >quarkus-extension-processor</artifactId >
169
- <version >${quarkus.version} </version >
170
- </path >
171
- </annotationProcessorPaths >
172
- </configuration >
152
+ <plugin >
153
+ <groupId >org.apache.maven.plugins</groupId >
154
+ <artifactId >maven-compiler-plugin</artifactId >
155
+ <version >3.12.1</version >
156
+ <configuration >
157
+ <encoding >${project.build.sourceEncoding} </encoding >
158
+ <annotationProcessorPaths >
159
+ <path >
160
+ <groupId >org.projectlombok</groupId >
161
+ <artifactId >lombok</artifactId >
162
+ <version >1.18.30</version >
163
+ </path >
164
+ <path >
165
+ <groupId >io.quarkus</groupId >
166
+ <artifactId >quarkus-extension-processor</artifactId >
167
+ <version >${quarkus.version} </version >
168
+ </path >
169
+ </annotationProcessorPaths >
170
+ </configuration >
173
171
</plugin >
174
172
<plugin >
175
173
<groupId >io.github.cleydyr</groupId >
Original file line number Diff line number Diff line change 1
1
package org .primefaces .showcase .util ;
2
2
3
- import java .util .logging .Logger ;
4
-
5
3
import org .apache .commons .lang3 .SystemUtils ;
6
- import org .primefaces .showcase .view .misc .PrimeIconsView ;
7
4
8
5
import io .quarkus .runtime .annotations .RegisterForReflection ;
9
6
import lombok .extern .jbosslog .JBossLog ;
@@ -109,7 +106,7 @@ public static String getMemoryStatisticsAsString() {
109
106
byteCountToDisplaySize (availableMemory ) +
110
107
" Max: " +
111
108
byteCountToDisplaySize (maxMemory );
112
- Logger . getLogger ( VirtualMachine . class . getName ()) .info (output );
109
+ log .info (output );
113
110
114
111
return output ;
115
112
}
Original file line number Diff line number Diff line change @@ -91,7 +91,9 @@ public void increment() {
91
91
}
92
92
93
93
public void handleKeyEvent () {
94
- text5 = text5 .toUpperCase ();
94
+ if (text5 != null ) {
95
+ text5 = text5 .toUpperCase ();
96
+ }
95
97
}
96
98
97
99
public String getText1 () {
You can’t perform that action at this time.
0 commit comments