From a42babaa9646130db6673a53553bf179ae6f80f1 Mon Sep 17 00:00:00 2001 From: Jonathan Gillespie Date: Thu, 16 Mar 2017 08:40:32 +0100 Subject: [PATCH] Fixed the ordering of the filter scopes to be in descending order --- src/classes/QueryFilterScope.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/QueryFilterScope.cls b/src/classes/QueryFilterScope.cls index 6abc26a..9561280 100644 --- a/src/classes/QueryFilterScope.cls +++ b/src/classes/QueryFilterScope.cls @@ -2,4 +2,4 @@ * This file is part of the Nebula Framework project, released under the MIT License. * * See LICENSE file or go to https://github.com/jongpie/NebulaFramework for full license details. * *************************************************************************************************/ -public enum QueryFilterScope {EVERYTHING, MINE, TEAM} \ No newline at end of file +public enum QueryFilterScope {EVERYTHING, TEAM, MINE} \ No newline at end of file