Add missing type for the BUILD_AWARE_ORDER comparator

This commit is contained in:
Zafar Khaja 2013-11-16 21:14:55 +04:00
parent e92c95e13b
commit 2b3855a60a

View File

@ -136,7 +136,7 @@ public class Version implements Comparable<Version> {
/** /**
* A comparator that respects the build metadata when comparing versions. * A comparator that respects the build metadata when comparing versions.
*/ */
public static final Comparator BUILD_AWARE_ORDER = new BuildAwareOrder(); public static final Comparator<Version> BUILD_AWARE_ORDER = new BuildAwareOrder();
/** /**
* A build-aware comparator. * A build-aware comparator.