~verterok/ubuntu/lucid/protobuf/2.4.0a-backport

« back to all changes in this revision

Viewing changes to java/src/main/java/com/google/protobuf/AbstractMessageLite.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-05-31 14:41:47 UTC
  • mfrom: (2.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20110531144147-s41g5fozgvyo462l
Tags: 2.4.0a-2ubuntu1
* Merge with Debian; remaining changes:
  - Fix linking with -lpthread.

Show diffs side-by-side

added added

removed removed

Lines of Context:
313
313
        }
314
314
      }
315
315
      if (values instanceof Collection) {
316
 
        @SuppressWarnings("unsafe") final
317
 
        Collection<T> collection = (Collection<T>) values;
 
316
        final Collection<T> collection = (Collection<T>) values;
318
317
        list.addAll(collection);
319
318
      } else {
320
319
        for (final T value : values) {