Index: sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin.php	(revision 4055)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin.php	(working copy)
@@ -33,7 +33,6 @@
 	 */
 	private function __construct() {
 		$this->performance = new Performance_Optimizations;
-		$this->users       = new Users;
 		$this->moderators  = new Moderators;
 		$this->hooks       = new Hooks;
 
Index: sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-users.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-users.php	(revision 4055)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-users.php	(nonexistent)
@@ -1,26 +0,0 @@
-<?php
-
-namespace WordPressdotorg\Forums;
-
-class Users {
-
-	public function __construct() {
-		add_filter( 'bbp_get_user_display_role', array( $this, 'display_role' ), 10, 2 );
-	}
-
-	/**
-	 * If the user has a custom title, use that instead of the forum role.
-	 *
-	 * @param string $role The user's forum role
-	 * @param int $user_id The user id
-	 * @return string The user's custom forum title, or their forum role
-	 */
-	public function display_role( $role, $user_id ) {
-		$title = get_user_option( 'title', $user_id );
-		if ( ! empty( $title ) ) {
-			return esc_html( $title );
-		}
-
-		return $role;
-	}
-}

Property changes on: sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-users.php
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Index: sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/support-forums.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/support-forums.php	(revision 4055)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/support-forums.php	(working copy)
@@ -15,7 +15,6 @@
 
 // General includes.
 include( dirname( __FILE__ ) . '/inc/class-plugin.php' );
-include( dirname( __FILE__ ) . '/inc/class-users.php' );
 include( dirname( __FILE__ ) . '/inc/class-moderators.php' );
 include( dirname( __FILE__ ) . '/inc/class-hooks.php' );
 
