@@ -50,15 +50,14 @@ /*! * @brief A stream for reading the current entry. * * @note This is only available in read mode. * - * @note The returned stream only conforms to @ref OFReadyForReadingObserving if - * the underlying stream does so, too. + * @note The returned stream conforms to @ref OFReadyForReadingObserving if the + * underlying stream does so, too. */ -@property (readonly, nonatomic) - OFStream *streamForReadingCurrentEntry; +@property (readonly, nonatomic) OFStream *streamForReadingCurrentEntry; /*! * @brief Creates a new OFLHAArchive object with the specified stream. * * @param stream A stream from which the LHA archive will be read. @@ -139,12 +138,12 @@ * @note This is only available in write and append mode. * * @note The uncompressed size, compressed size and CRC16 of the specified * entry are ignored. * - * @note The returned stream only conforms to @ref OFReadyForWritingObserving if - * the underlying stream does so, too. + * @note The returned stream conforms to @ref OFReadyForWritingObserving if the + * underlying stream does so, too. * * @warning Calling @ref nextEntry will invalidate all streams returned by * @ref streamForReadingCurrentEntry or * @ref streamForWritingEntry:! Reading from or writing to an * invalidated stream will throw an @ref OFReadFailedException or @@ -151,15 +150,14 @@ * @ref OFWriteFailedException! * * @param entry The entry for which a stream for writing should be returned * @return A stream for writing the specified entry */ -- (OFStream *) - streamForWritingEntry: (OFLHAArchiveEntry *)entry; +- (OFStream *)streamForWritingEntry: (OFLHAArchiveEntry *)entry; /*! * @brief Closes the OFLHAArchive. */ - (void)close; @end OF_ASSUME_NONNULL_END