(String feedId, long entryId)
| 272 | } |
| 273 | |
| 274 | public static final String toEntryUrn(String feedId, long entryId) { |
| 275 | return ENTRY_URN_PREFIX + feedId + URN_SEPARATOR |
| 276 | + Long.toHexString(entryId); |
| 277 | } |
| 278 | |
| 279 | public static final String fromFeedUrn(Object feedUrn) { |
| 280 | if (feedUrn != null) { |
no outgoing calls
no test coverage detected