Skip to content
Snippets Groups Projects
Commit 38f1b306 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

avoid npe

parent 060042e5
No related branches found
No related tags found
No related merge requests found
...@@ -164,7 +164,8 @@ public class PduPlayer { ...@@ -164,7 +164,8 @@ public class PduPlayer {
//Add the "]" to the end of sa[0]. It was taken off by the split //Add the "]" to the end of sa[0]. It was taken off by the split
sa[0] = sa[0].concat("]"); sa[0] = sa[0].concat("]");
//Add the "]" to the end of sa[0]. It was taken off by the split //Add the "]" to the end of sa[0]. It was taken off by the split
sa[1] = "[".concat(sa[1]); if (sa.length > 1)
sa[1] = "[".concat(sa[1]);
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment