Skip to content

Commit

Permalink
fix in EventReader
Browse files Browse the repository at this point in the history
  • Loading branch information
ishkin committed Apr 26, 2017
1 parent c8bb902 commit 2d97c94
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public IEventInstance readFrom(Class<IEventInstance> type, Type generic, Annotat
int nameAttrIndex = eventString.indexOf(EventHeader.NAME_ATTRIBUTE);
String nameSubstring = eventString.substring(nameAttrIndex);

int delimiterIndex = nameSubstring.indexOf(DELIMITER);
int delimiterIndex = (nameSubstring.indexOf(DELIMITER) != -1)? nameSubstring.indexOf(DELIMITER) : nameSubstring.length() ;
int tagDataSeparatorIndex = nameSubstring.indexOf(TAG_DATA_SEPARATOR);
String nameValue = nameSubstring.substring(tagDataSeparatorIndex+1,delimiterIndex);
IEventType eventType= WebMetadataFacade.getInstance().getEventMetadataFacade().getEventType(nameValue);
Expand Down
Binary file modified artifacts/ProtonOnWebServer.war
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
50265ae4b9dabf1e5a42bcbbe395388f
7b222eb55520b39dac841f180f72699d
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c317668a682ac9f918290e25b00981692a1a0a84
8837244687317520d76552e3cb4379a5f4a0d073
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</versions>
<lastUpdated>20170131130012</lastUpdated>
<lastUpdated>20170426104140</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
436f55a4f9e7ff1f88bc4c0d5d6ad22a
7965f80a20e95612483b5c17fe4a4222
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13d384a3e85b5e03813bcb7064d51051d61cb0bf
152c3b5301e59bd826212d119569712815921307

0 comments on commit 2d97c94

Please sign in to comment.