workspace.xml 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project version="4">
  3. <component name="ChangeListManager">
  4. <list default="true" id="4f0c6f35-1ac5-49ea-b41e-20445c07c5c6" name="Default" comment="">
  5. <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
  6. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedList.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedList.java" afterDir="false" />
  7. <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedListTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedListTest.java" afterDir="false" />
  8. </list>
  9. <ignored path="$PROJECT_DIR$/out/" />
  10. <ignored path="$PROJECT_DIR$/target/" />
  11. <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
  12. <option name="SHOW_DIALOG" value="false" />
  13. <option name="HIGHLIGHT_CONFLICTS" value="true" />
  14. <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
  15. <option name="LAST_RESOLUTION" value="IGNORE" />
  16. </component>
  17. <component name="FUSProjectUsageTrigger">
  18. <session id="1297720062">
  19. <usages-collector id="statistics.lifecycle.project">
  20. <counts>
  21. <entry key="project.closed" value="3" />
  22. <entry key="project.open.time.1" value="2" />
  23. <entry key="project.open.time.2" value="1" />
  24. <entry key="project.open.time.3" value="1" />
  25. <entry key="project.opened" value="4" />
  26. </counts>
  27. </usages-collector>
  28. <usages-collector id="statistics.file.extensions.edit">
  29. <counts>
  30. <entry key="java" value="4081" />
  31. <entry key="xml" value="34" />
  32. </counts>
  33. </usages-collector>
  34. <usages-collector id="statistics.file.types.edit">
  35. <counts>
  36. <entry key="JAVA" value="4081" />
  37. <entry key="XML" value="34" />
  38. </counts>
  39. </usages-collector>
  40. <usages-collector id="statistics.spring.boot.run.usages" />
  41. <usages-collector id="statistics.vcs.git.usages" />
  42. <usages-collector id="statistics.js.language.service.starts" />
  43. <usages-collector id="statistics.file.types.open" />
  44. <usages-collector id="statistics.spring.boot.mvc.usages" />
  45. </session>
  46. </component>
  47. <component name="FileEditorManager">
  48. <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
  49. <file pinned="false" current-in-tab="false">
  50. <entry file="file://$PROJECT_DIR$/pom.xml">
  51. <provider selected="true" editor-type-id="text-editor">
  52. <state relative-caret-position="225">
  53. <caret line="15" column="17" selection-start-line="15" selection-start-column="17" selection-end-line="15" selection-end-column="17" />
  54. </state>
  55. </provider>
  56. </entry>
  57. </file>
  58. <file pinned="false" current-in-tab="false">
  59. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/MainApplication.java">
  60. <provider selected="true" editor-type-id="text-editor">
  61. <state relative-caret-position="105">
  62. <caret line="7" selection-start-line="7" selection-end-line="7" />
  63. </state>
  64. </provider>
  65. </entry>
  66. </file>
  67. <file pinned="false" current-in-tab="false">
  68. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedList.java">
  69. <provider selected="true" editor-type-id="text-editor">
  70. <state relative-caret-position="69">
  71. <caret line="131" column="20" selection-start-line="131" selection-start-column="20" selection-end-line="131" selection-end-column="20" />
  72. <folding>
  73. <element signature="e#574#575#0" expanded="true" />
  74. <element signature="e#621#622#0" expanded="true" />
  75. </folding>
  76. </state>
  77. </provider>
  78. </entry>
  79. </file>
  80. <file pinned="false" current-in-tab="true">
  81. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedListTest.java">
  82. <provider selected="true" editor-type-id="text-editor">
  83. <state relative-caret-position="1560">
  84. <caret line="104" column="24" selection-start-line="104" selection-start-column="24" selection-end-line="104" selection-end-column="24" />
  85. <folding>
  86. <element signature="imports" expanded="true" />
  87. </folding>
  88. </state>
  89. </provider>
  90. </entry>
  91. </file>
  92. <file pinned="false" current-in-tab="false">
  93. <entry file="file://$PROJECT_DIR$/.gitignore">
  94. <provider selected="true" editor-type-id="text-editor">
  95. <state relative-caret-position="75">
  96. <caret line="5" column="5" selection-start-line="5" selection-start-column="5" selection-end-line="5" selection-end-column="5" />
  97. </state>
  98. </provider>
  99. </entry>
  100. </file>
  101. </leaf>
  102. </component>
  103. <component name="FileTemplateManagerImpl">
  104. <option name="RECENT_TEMPLATES">
  105. <list>
  106. <option value="Class" />
  107. </list>
  108. </option>
  109. </component>
  110. <component name="Git.Settings">
  111. <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
  112. </component>
  113. <component name="IdeDocumentHistory">
  114. <option name="CHANGED_PATHS">
  115. <list>
  116. <option value="$PROJECT_DIR$/.gitignore" />
  117. <option value="$PROJECT_DIR$/pom.xml" />
  118. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/MainApplication.java" />
  119. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedList.java" />
  120. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedListTest.java" />
  121. </list>
  122. </option>
  123. </component>
  124. <component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
  125. <component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
  126. <component name="JsGulpfileManager">
  127. <detection-done>true</detection-done>
  128. <sorting>DEFINITION_ORDER</sorting>
  129. </component>
  130. <component name="MavenImportPreferences">
  131. <option name="importingSettings">
  132. <MavenImportingSettings>
  133. <option name="importAutomatically" value="true" />
  134. </MavenImportingSettings>
  135. </option>
  136. </component>
  137. <component name="ProjectFrameBounds" extendedState="6" fullScreen="true">
  138. <option name="width" value="1280" />
  139. <option name="height" value="800" />
  140. </component>
  141. <component name="ProjectView">
  142. <navigator proportions="" version="1">
  143. <foldersAlwaysOnTop value="true" />
  144. </navigator>
  145. <panes>
  146. <pane id="Scope" />
  147. <pane id="PackagesPane" />
  148. <pane id="ProjectPane">
  149. <subPane>
  150. <expand>
  151. <path>
  152. <item name="singlylinkedlist" type="b2602c69:ProjectViewProjectNode" />
  153. <item name="CR-MesoLabs-Collections-SinglyLinkedList" type="462c0819:PsiDirectoryNode" />
  154. </path>
  155. </expand>
  156. <select />
  157. </subPane>
  158. </pane>
  159. </panes>
  160. </component>
  161. <component name="PropertiesComponent">
  162. <property name="WebServerToolWindowFactoryState" value="false" />
  163. <property name="aspect.path.notification.shown" value="true" />
  164. <property name="com.android.tools.idea.instantapp.provision.ProvisionBeforeRunTaskProvider.myTimeStamp" value="1541556535914" />
  165. <property name="last_opened_file_path" value="$PROJECT_DIR$" />
  166. <property name="project.structure.last.edited" value="Project" />
  167. <property name="project.structure.proportion" value="0.0" />
  168. <property name="project.structure.side.proportion" value="0.2" />
  169. <property name="settings.editor.selected.configurable" value="reference.projectsettings.compiler.javacompiler" />
  170. </component>
  171. <component name="RunDashboard">
  172. <option name="ruleStates">
  173. <list>
  174. <RuleState>
  175. <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
  176. </RuleState>
  177. <RuleState>
  178. <option name="name" value="StatusDashboardGroupingRule" />
  179. </RuleState>
  180. </list>
  181. </option>
  182. </component>
  183. <component name="RunManager" selected="JUnit.SinglyLinkedListTest.sortTest">
  184. <configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
  185. <module name="" />
  186. <option name="TESTING_TYPE" value="0" />
  187. <option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
  188. <option name="METHOD_NAME" value="" />
  189. <option name="CLASS_NAME" value="" />
  190. <option name="PACKAGE_NAME" value="" />
  191. <option name="EXTRA_OPTIONS" value="" />
  192. <option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
  193. <option name="PREFERRED_AVD" value="" />
  194. <option name="CLEAR_LOGCAT" value="false" />
  195. <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
  196. <option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
  197. <option name="FORCE_STOP_RUNNING_APP" value="true" />
  198. <option name="DEBUGGER_TYPE" value="Java" />
  199. <option name="USE_LAST_SELECTED_DEVICE" value="false" />
  200. <option name="PREFERRED_AVD" value="" />
  201. <Java />
  202. <Profilers>
  203. <option name="ENABLE_ADVANCED_PROFILING" value="true" />
  204. <option name="GAPID_ENABLED" value="false" />
  205. <option name="GAPID_DISABLE_PCS" value="false" />
  206. <option name="SUPPORT_LIB_ENABLED" value="true" />
  207. <option name="INSTRUMENTATION_ENABLED" value="true" />
  208. </Profilers>
  209. <method />
  210. </configuration>
  211. <configuration default="true" type="executeSpecs" factoryName="Gauge Execution">
  212. <setting name="environment" value="" />
  213. <setting name="specsToExecute" value="" />
  214. <setting name="tags" value="" />
  215. <setting name="parallelNodes" value="" />
  216. <setting name="execInParallel" value="false" />
  217. <setting name="programParameters" value="" />
  218. <setting name="workingDirectory" value="" />
  219. <setting name="moduleName" value="" />
  220. <envMap />
  221. <setting name="rowsRange" value="" />
  222. <method />
  223. </configuration>
  224. <configuration default="true" type="Applet" factoryName="Applet">
  225. <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
  226. <method v="2">
  227. <option name="Make" enabled="true" />
  228. </method>
  229. </configuration>
  230. <configuration default="true" type="Application" factoryName="Application">
  231. <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
  232. <method v="2">
  233. <option name="Make" enabled="true" />
  234. </method>
  235. </configuration>
  236. <configuration name="SinglyLinkedListTest" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  237. <module name="singlylinkedlist" />
  238. <extension name="coverage">
  239. <pattern>
  240. <option name="PATTERN" value="com.zipcodewilmington.singlylinkedlist.*" />
  241. <option name="ENABLED" value="true" />
  242. </pattern>
  243. </extension>
  244. <option name="PACKAGE_NAME" value="com.zipcodewilmington.singlylinkedlist" />
  245. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.singlylinkedlist.SinglyLinkedListTest" />
  246. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  247. <method v="2">
  248. <option name="Make" enabled="true" />
  249. </method>
  250. </configuration>
  251. <configuration name="SinglyLinkedListTest.addTest" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  252. <module name="singlylinkedlist" />
  253. <extension name="coverage">
  254. <pattern>
  255. <option name="PATTERN" value="com.zipcodewilmington.singlylinkedlist.*" />
  256. <option name="ENABLED" value="true" />
  257. </pattern>
  258. </extension>
  259. <option name="PACKAGE_NAME" value="com.zipcodewilmington.singlylinkedlist" />
  260. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.singlylinkedlist.SinglyLinkedListTest" />
  261. <option name="METHOD_NAME" value="addTest" />
  262. <option name="TEST_OBJECT" value="method" />
  263. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  264. <method v="2">
  265. <option name="Make" enabled="true" />
  266. </method>
  267. </configuration>
  268. <configuration name="SinglyLinkedListTest.copyTest" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  269. <module name="singlylinkedlist" />
  270. <extension name="coverage">
  271. <pattern>
  272. <option name="PATTERN" value="com.zipcodewilmington.singlylinkedlist.*" />
  273. <option name="ENABLED" value="true" />
  274. </pattern>
  275. </extension>
  276. <option name="PACKAGE_NAME" value="com.zipcodewilmington.singlylinkedlist" />
  277. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.singlylinkedlist.SinglyLinkedListTest" />
  278. <option name="METHOD_NAME" value="copyTest" />
  279. <option name="TEST_OBJECT" value="method" />
  280. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  281. <method v="2">
  282. <option name="Make" enabled="true" />
  283. </method>
  284. </configuration>
  285. <configuration name="SinglyLinkedListTest.removeTest" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  286. <module name="singlylinkedlist" />
  287. <extension name="coverage">
  288. <pattern>
  289. <option name="PATTERN" value="com.zipcodewilmington.singlylinkedlist.*" />
  290. <option name="ENABLED" value="true" />
  291. </pattern>
  292. </extension>
  293. <option name="PACKAGE_NAME" value="com.zipcodewilmington.singlylinkedlist" />
  294. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.singlylinkedlist.SinglyLinkedListTest" />
  295. <option name="METHOD_NAME" value="removeTest" />
  296. <option name="TEST_OBJECT" value="method" />
  297. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  298. <method v="2">
  299. <option name="Make" enabled="true" />
  300. </method>
  301. </configuration>
  302. <configuration name="SinglyLinkedListTest.sortTest" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  303. <module name="singlylinkedlist" />
  304. <extension name="coverage">
  305. <pattern>
  306. <option name="PATTERN" value="com.zipcodewilmington.singlylinkedlist.*" />
  307. <option name="ENABLED" value="true" />
  308. </pattern>
  309. </extension>
  310. <option name="PACKAGE_NAME" value="com.zipcodewilmington.singlylinkedlist" />
  311. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.singlylinkedlist.SinglyLinkedListTest" />
  312. <option name="METHOD_NAME" value="sortTest" />
  313. <option name="TEST_OBJECT" value="method" />
  314. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  315. <method v="2">
  316. <option name="Make" enabled="true" />
  317. </method>
  318. </configuration>
  319. <configuration default="true" type="JUnit" factoryName="JUnit">
  320. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  321. <method v="2">
  322. <option name="Make" enabled="true" />
  323. </method>
  324. </configuration>
  325. <configuration default="true" type="JetRunConfigurationType" factoryName="Kotlin">
  326. <module name="CR-MesoLabs-Collections-SinglyLinkedList" />
  327. <option name="VM_PARAMETERS" />
  328. <option name="PROGRAM_PARAMETERS" />
  329. <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
  330. <option name="ALTERNATIVE_JRE_PATH" />
  331. <option name="PASS_PARENT_ENVS" value="true" />
  332. <option name="MAIN_CLASS_NAME" />
  333. <option name="WORKING_DIRECTORY" />
  334. <method v="2">
  335. <option name="Make" enabled="true" />
  336. </method>
  337. </configuration>
  338. <configuration default="true" type="TestNG" factoryName="TestNG">
  339. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  340. <properties />
  341. <listeners />
  342. <method v="2">
  343. <option name="Make" enabled="true" />
  344. </method>
  345. </configuration>
  346. <configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
  347. <module name="" />
  348. <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
  349. <option name="PROGRAM_PARAMETERS" />
  350. <predefined_log_file id="idea.log" enabled="true" />
  351. <method v="2">
  352. <option name="Make" enabled="true" />
  353. </method>
  354. </configuration>
  355. <list>
  356. <item itemvalue="JUnit.SinglyLinkedListTest" />
  357. <item itemvalue="JUnit.SinglyLinkedListTest.copyTest" />
  358. <item itemvalue="JUnit.SinglyLinkedListTest.removeTest" />
  359. <item itemvalue="JUnit.SinglyLinkedListTest.addTest" />
  360. <item itemvalue="JUnit.SinglyLinkedListTest.sortTest" />
  361. </list>
  362. <recent_temporary>
  363. <list>
  364. <item itemvalue="JUnit.SinglyLinkedListTest.sortTest" />
  365. <item itemvalue="JUnit.SinglyLinkedListTest" />
  366. <item itemvalue="JUnit.SinglyLinkedListTest.copyTest" />
  367. <item itemvalue="JUnit.SinglyLinkedListTest.addTest" />
  368. <item itemvalue="JUnit.SinglyLinkedListTest.removeTest" />
  369. </list>
  370. </recent_temporary>
  371. </component>
  372. <component name="SvnConfiguration">
  373. <configuration />
  374. </component>
  375. <component name="TaskManager">
  376. <task active="true" id="Default" summary="Default task">
  377. <changelist id="4f0c6f35-1ac5-49ea-b41e-20445c07c5c6" name="Default" comment="" />
  378. <created>1515621994762</created>
  379. <option name="number" value="Default" />
  380. <option name="presentableId" value="Default" />
  381. <updated>1515621994762</updated>
  382. <workItem from="1541382445297" duration="5892000" />
  383. <workItem from="1541456889693" duration="7000" />
  384. <workItem from="1541456908858" duration="12622000" />
  385. <workItem from="1541550798359" duration="4306000" />
  386. </task>
  387. <servers />
  388. </component>
  389. <component name="TestHistory">
  390. <history-entry file="SinglyLinkedListTest - 2018.11.05 at 20h 55m 44s.xml">
  391. <configuration name="SinglyLinkedListTest" configurationId="JUnit" />
  392. </history-entry>
  393. <history-entry file="SinglyLinkedListTest - 2018.11.05 at 20h 56m 26s.xml">
  394. <configuration name="SinglyLinkedListTest" configurationId="JUnit" />
  395. </history-entry>
  396. <history-entry file="SinglyLinkedListTest_copyTest - 2018.11.05 at 21h 01m 49s.xml">
  397. <configuration name="SinglyLinkedListTest.copyTest" configurationId="JUnit" />
  398. </history-entry>
  399. <history-entry file="SinglyLinkedListTest - 2018.11.05 at 21h 03m 55s.xml">
  400. <configuration name="SinglyLinkedListTest" configurationId="JUnit" />
  401. </history-entry>
  402. <history-entry file="SinglyLinkedListTest - 2018.11.06 at 19h 43m 30s.xml">
  403. <configuration name="SinglyLinkedListTest" configurationId="JUnit" />
  404. </history-entry>
  405. <history-entry file="SinglyLinkedListTest - 2018.11.06 at 19h 44m 07s.xml">
  406. <configuration name="SinglyLinkedListTest" configurationId="JUnit" />
  407. </history-entry>
  408. <history-entry file="SinglyLinkedListTest_sortTest - 2018.11.06 at 21h 03m 34s.xml">
  409. <configuration name="SinglyLinkedListTest.sortTest" configurationId="JUnit" />
  410. </history-entry>
  411. <history-entry file="SinglyLinkedListTest_sortTest - 2018.11.06 at 21h 03m 47s.xml">
  412. <configuration name="SinglyLinkedListTest.sortTest" configurationId="JUnit" />
  413. </history-entry>
  414. <history-entry file="SinglyLinkedListTest_sortTest - 2018.11.06 at 21h 04m 07s.xml">
  415. <configuration name="SinglyLinkedListTest.sortTest" configurationId="JUnit" />
  416. </history-entry>
  417. <history-entry file="SinglyLinkedListTest - 2018.11.06 at 21h 04m 14s.xml">
  418. <configuration name="SinglyLinkedListTest" configurationId="JUnit" />
  419. </history-entry>
  420. </component>
  421. <component name="TimeTrackingManager">
  422. <option name="totallyTimeSpent" value="22827000" />
  423. </component>
  424. <component name="ToolWindowManager">
  425. <frame x="0" y="0" width="1280" height="800" extended-state="6" />
  426. <editor active="true" />
  427. <layout>
  428. <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.2657512" />
  429. <window_info id="Structure" order="1" weight="0.25" />
  430. <window_info id="Nl-Palette" order="2" />
  431. <window_info id="Favorites" order="3" side_tool="true" />
  432. <window_info id="Image Layers" order="4" />
  433. <window_info id="Designer" order="5" />
  434. <window_info id="UI Designer" order="6" />
  435. <window_info id="Capture Tool" order="7" />
  436. <window_info anchor="bottom" id="Message" order="0" />
  437. <window_info anchor="bottom" id="Find" order="1" />
  438. <window_info active="true" anchor="bottom" id="Run" order="2" visible="true" weight="0.2041096" />
  439. <window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
  440. <window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
  441. <window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
  442. <window_info anchor="bottom" id="TODO" order="6" />
  443. <window_info anchor="bottom" id="Terminal" order="7" weight="0.32911393" />
  444. <window_info anchor="bottom" id="Event Log" order="8" side_tool="true" />
  445. <window_info anchor="bottom" id="Version Control" order="9" />
  446. <window_info anchor="bottom" id="Messages" order="10" weight="0.4520548" />
  447. <window_info anchor="bottom" id="Database Changes" order="11" show_stripe_button="false" />
  448. <window_info anchor="right" id="Commander" order="0" weight="0.4" />
  449. <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
  450. <window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
  451. <window_info anchor="right" id="Palette" order="3" />
  452. <window_info anchor="right" id="Capture Analysis" order="4" />
  453. <window_info anchor="right" id="Theme Preview" order="5" />
  454. <window_info anchor="right" id="Properties" order="6" />
  455. <window_info anchor="right" id="Palette&#9;" order="7" />
  456. <window_info anchor="right" id="Maven Projects" order="8" />
  457. <window_info anchor="right" id="Database" order="9" />
  458. </layout>
  459. </component>
  460. <component name="TypeScriptGeneratedFilesManager">
  461. <option name="version" value="1" />
  462. </component>
  463. <component name="VcsContentAnnotationSettings">
  464. <option name="myLimit" value="2678400000" />
  465. </component>
  466. <component name="editorHistoryManager">
  467. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist.java" />
  468. <entry file="file://$PROJECT_DIR$/README.md">
  469. <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
  470. <state split_layout="SPLIT">
  471. <first_editor />
  472. <second_editor />
  473. </state>
  474. </provider>
  475. </entry>
  476. <entry file="file://$PROJECT_DIR$/pom.xml">
  477. <provider selected="true" editor-type-id="text-editor">
  478. <state relative-caret-position="225">
  479. <caret line="15" column="17" selection-start-line="15" selection-start-column="17" selection-end-line="15" selection-end-column="17" />
  480. </state>
  481. </provider>
  482. </entry>
  483. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/MainApplication.java">
  484. <provider selected="true" editor-type-id="text-editor">
  485. <state relative-caret-position="105">
  486. <caret line="7" selection-start-line="7" selection-end-line="7" />
  487. </state>
  488. </provider>
  489. </entry>
  490. <entry file="file://$PROJECT_DIR$/.gitignore">
  491. <provider selected="true" editor-type-id="text-editor">
  492. <state relative-caret-position="75">
  493. <caret line="5" column="5" selection-start-line="5" selection-start-column="5" selection-end-line="5" selection-end-column="5" />
  494. </state>
  495. </provider>
  496. </entry>
  497. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedList.java">
  498. <provider selected="true" editor-type-id="text-editor">
  499. <state relative-caret-position="69">
  500. <caret line="131" column="20" selection-start-line="131" selection-start-column="20" selection-end-line="131" selection-end-column="20" />
  501. <folding>
  502. <element signature="e#574#575#0" expanded="true" />
  503. <element signature="e#621#622#0" expanded="true" />
  504. </folding>
  505. </state>
  506. </provider>
  507. </entry>
  508. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/singlylinkedlist/SinglyLinkedListTest.java">
  509. <provider selected="true" editor-type-id="text-editor">
  510. <state relative-caret-position="1560">
  511. <caret line="104" column="24" selection-start-line="104" selection-start-column="24" selection-end-line="104" selection-end-column="24" />
  512. <folding>
  513. <element signature="imports" expanded="true" />
  514. </folding>
  515. </state>
  516. </provider>
  517. </entry>
  518. </component>
  519. </project>