GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 16-16 lines in 2 locations

component/admin/models/package.php 1 location

@@ 103-118 (lines=16) @@
100
	 *
101
	 * @return   mixed  The data for the form.
102
	 */
103
	protected function loadFormData()
104
	{
105
		// Initialise variables.
106
		$app = JFactory::getApplication();
107
108
		// Check the session for previously entered form data.
109
		$data = $app->getUserState('com_localise.edit.package.data', array());
110
111
		// Get the package data.
112
		if (empty($data))
113
		{
114
			$data = $this->getItem();
115
		}
116
117
		return $data;
118
	}
119
120
	/**
121
	 * Method to get the ftp form.

component/admin/models/packagefile.php 1 location

@@ 103-118 (lines=16) @@
100
	 *
101
	 * @return   mixed  The data for the form.
102
	 */
103
	protected function loadFormData()
104
	{
105
		// Initialise variables.
106
		$app = JFactory::getApplication();
107
108
		// Check the session for previously entered form data.
109
		$data = $app->getUserState('com_localise.edit.packagefile.data', array());
110
111
		// Get the package data.
112
		if (empty($data))
113
		{
114
			$data = $this->getItem();
115
		}
116
117
		return $data;
118
	}
119
120
	/**
121
	 * Method to get the ftp form.