peichhorn / lombok-pg

Collection of lombok extensions
http://peichhorn.github.com/lombok-pg/
Other
326 stars 44 forks source link

Yield a bit broken in 0.11.3 #122

Open nicholas22 opened 11 years ago

nicholas22 commented 11 years ago
 @Validate
 public static Iterable<byte[]> read(@NotNull final String file, final int blockSize)
     throws IOException
 {
   yield(new byte[0]);
 }

Hopefully this can be fixed soon :)

peichhorn commented 11 years ago

Thanks for the report. This error got introduced in the process of allowing val and yield to work together. (see commit cedf83e80381938bb8337b6ba5b3b2fb11409aa8)

I'm going to tackle this after the migration to lombok 0.11.4. There are some internal changes in lombok that should make a tight integration of all features a lot easier to achieve.

nicholas22 commented 11 years ago

Cool- will await for this to update propel's byte[] file block iterator.