mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	Make event methods private.
This commit is contained in:
		
							parent
							
								
									750d8a989f
								
							
						
					
					
						commit
						7462a0a9e8
					
				@ -176,7 +176,7 @@ namespace Emby.Server.Implementations.EntryPoints
 | 
				
			|||||||
        /// </summary>
 | 
					        /// </summary>
 | 
				
			||||||
        /// <param name="sender">The source of the event.</param>
 | 
					        /// <param name="sender">The source of the event.</param>
 | 
				
			||||||
        /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
 | 
					        /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
 | 
				
			||||||
        void OnLibraryItemAdded(object sender, ItemChangeEventArgs e)
 | 
					        private void OnLibraryItemAdded(object sender, ItemChangeEventArgs e)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (!FilterItem(e.Item))
 | 
					            if (!FilterItem(e.Item))
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
@ -239,7 +239,7 @@ namespace Emby.Server.Implementations.EntryPoints
 | 
				
			|||||||
        /// </summary>
 | 
					        /// </summary>
 | 
				
			||||||
        /// <param name="sender">The source of the event.</param>
 | 
					        /// <param name="sender">The source of the event.</param>
 | 
				
			||||||
        /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
 | 
					        /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
 | 
				
			||||||
        void OnLibraryItemRemoved(object sender, ItemChangeEventArgs e)
 | 
					        private void OnLibraryItemRemoved(object sender, ItemChangeEventArgs e)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (!FilterItem(e.Item))
 | 
					            if (!FilterItem(e.Item))
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user