Ignore:
Timestamp:
Sep 4, 2018, 1:00:48 PM (6 years ago)
Author:
alloc
Message:

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/LiveData/Animals.cs

    r312 r325  
    1 using System;
    2 using System.Collections.Generic;
    3 
    4 namespace AllocsFixes.LiveData
    5 {
    6         public class Animals : EntityFilterList<EntityAnimal>
    7     {
    8 
     1namespace AllocsFixes.LiveData {
     2        public class Animals : EntityFilterList<EntityAnimal> {
    93                public static readonly Animals Instance = new Animals ();
    104
    115                protected override EntityAnimal predicate (Entity _e) {
    126                        if (_e is EntityAnimal) {
    13                                 EntityAnimal ea = (EntityAnimal)_e;
     7                                EntityAnimal ea = (EntityAnimal) _e;
    148
    159                                if (ea.IsAlive ()) {
     
    1711                                }
    1812                        }
     13
    1914                        return null;
    2015                }
    21 
    22     }
     16        }
    2317}
    24 
Note: See TracChangeset for help on using the changeset viewer.