We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 049db2d commit 50c22ddCopy full SHA for 50c22dd
1 file changed
src/main/java/com/ticketaka/performance/domain/Performance.java
@@ -132,6 +132,9 @@ public PerformanceInfo toPerformanceInfo() {
132
}
133
134
private List<String> generateStyUrlList() {
135
+ if(prfStyUrls == null) {
136
+ return new ArrayList<String>();
137
+ }
138
return new ArrayList<>(Arrays.asList(prfStyUrls.split(", ")));
139
140
0 commit comments