Code Duplication    Length = 7-7 lines in 2 locations

cloudcontrol/library/storage/Storage.php 1 location

@@ 250-256 (lines=7) @@
247
		/**
248
		 * @return BricksStorage
249
		 */
250
		public function getBricks()
251
		{
252
			if (!$this->bricks instanceof BricksStorage) {
253
				$this->bricks = new BricksStorage($this->repository);
254
			}
255
			return $this->bricks;
256
		}
257
258
		/**
259
		 * Get the image set

cloudcontrol/library/storage/storage/DocumentTypesStorage.php 1 location

@@ 117-123 (lines=7) @@
114
		$this->save();
115
	}
116
117
	private function getBricks()
118
	{
119
		if (!$this->bricks instanceof BricksStorage) {
120
			$this->bricks = new BricksStorage($this->repository);
121
		}
122
		return $this->bricks;
123
	}
124
}