Skip to content

Commit

Permalink
Fixed [issues/1]
Browse files Browse the repository at this point in the history
Thanks, https://github.com/vaibhav-varshaaweblabs to raised this issue.
  • Loading branch information
hemangshah committed Jun 18, 2017
1 parent cec39dc commit 638729d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Binary file not shown.
24 changes: 24 additions & 0 deletions PrinterExampleApp/PrinterExampleApp/Printer/Printer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_successLogTitle = newValue
} else {
_successLogTitle = ""
}
}
}
Expand All @@ -736,6 +738,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_errorLogTitle = newValue
} else {
_errorLogTitle = ""
}
}
}
Expand All @@ -749,6 +753,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_warningLogTitle = newValue
} else {
_warningLogTitle = ""
}
}
}
Expand All @@ -762,6 +768,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_infoLogTitle = newValue
} else {
_infoLogTitle = ""
}
}
}
Expand All @@ -775,6 +783,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_alertLogTitle = newValue
} else {
_alertLogTitle = ""
}
}
}
Expand Down Expand Up @@ -816,6 +826,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_successEmojiSymbol = newValue
} else {
_successEmojiSymbol = ""
}
}
}
Expand All @@ -829,6 +841,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_errorEmojiSymbol = newValue
} else {
_errorEmojiSymbol = ""
}
}
}
Expand All @@ -842,6 +856,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_warningEmojiSymbol = newValue
} else {
_warningEmojiSymbol = ""
}
}
}
Expand All @@ -855,6 +871,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_infoEmojiSymbol = newValue
} else {
_infoEmojiSymbol = ""
}
}
}
Expand All @@ -868,6 +886,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_alertEmojiSymbol = newValue
} else {
_alertEmojiSymbol = ""
}
}
}
Expand All @@ -881,6 +901,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_watchEmojiSymbol = newValue
} else {
_watchEmojiSymbol = ""
}
}
}
Expand All @@ -894,6 +916,8 @@ public final class Printer {
set (newValue) {
if !newValue.isEmpty {
_idEmojiSymbol = newValue
} else {
_idEmojiSymbol = ""
}
}
}
Expand Down

0 comments on commit 638729d

Please sign in to comment.