123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project version="4">
- <component name="ChangeListManager">
- <list default="true" id="30b7e4a0-b899-49c3-865c-0311dfadae62" name="Default" comment="">
- <change beforePath="$PROJECT_DIR$/.idea/compiler.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/compiler.xml" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/PersonWarehouse.leonlog" beforeDir="false" afterPath="$PROJECT_DIR$/target/PersonWarehouse.leonlog" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonFactory.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonFactory.class" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.class" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ArrayConverter.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ArrayConverter.class" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ListConverter.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ListConverter.class" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/StreamConverter.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/StreamConverter.class" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/global.leonlog" beforeDir="false" afterPath="$PROJECT_DIR$/target/global.leonlog" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/target/test-classes/com/zipcodewilmington/streams/TestStreamMap.class" beforeDir="false" />
- </list>
- <ignored path="$PROJECT_DIR$/out/" />
- <ignored path="$PROJECT_DIR$/target/" />
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
- <option name="SHOW_DIALOG" value="false" />
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
- <option name="LAST_RESOLUTION" value="IGNORE" />
- </component>
- <component name="ExportTestResults" outputFolder="$PROJECT_DIR$" openResultsInEditor="true" userTempatePath="" />
- <component name="FUSProjectUsageTrigger">
- <session id="-813253540">
- <usages-collector id="statistics.lifecycle.project">
- <counts>
- <entry key="project.open.time.2" value="1" />
- <entry key="project.opened" value="1" />
- </counts>
- </usages-collector>
- <usages-collector id="statistics.file.extensions.open">
- <counts>
- <entry key="java" value="33" />
- <entry key="md" value="3" />
- </counts>
- </usages-collector>
- <usages-collector id="statistics.file.types.open">
- <counts>
- <entry key="JAVA" value="33" />
- <entry key="Markdown" value="3" />
- </counts>
- </usages-collector>
- <usages-collector id="statistics.file.extensions.edit">
- <counts>
- <entry key="java" value="3041" />
- </counts>
- </usages-collector>
- <usages-collector id="statistics.file.types.edit">
- <counts>
- <entry key="JAVA" value="3041" />
- </counts>
- </usages-collector>
- </session>
- </component>
- <component name="FileEditorManager">
- <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
- <file pinned="false" current-in-tab="true">
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="168">
- <caret line="63" column="57" selection-start-line="63" selection-start-column="57" selection-end-line="63" selection-end-column="57" />
- <folding>
- <element signature="e#1177#1178#0" expanded="true" />
- <element signature="e#1219#1220#0" expanded="true" />
- <element signature="e#2593#2594#0" expanded="true" />
- <element signature="e#2620#2621#0" expanded="true" />
- <element signature="e#2813#2814#0" expanded="true" />
- <element signature="e#2840#2841#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- </file>
- <file pinned="false" current-in-tab="false">
- <entry file="file://$PROJECT_DIR$/README.md">
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
- <state split_layout="SPLIT">
- <first_editor />
- <second_editor />
- </state>
- </provider>
- </entry>
- </file>
- <file pinned="false" current-in-tab="false">
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConversionAgent.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="795">
- <caret line="67" column="16" selection-start-line="67" selection-start-column="16" selection-end-line="67" selection-end-column="16" />
- </state>
- </provider>
- </entry>
- </file>
- <file pinned="false" current-in-tab="false">
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterStream.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="90">
- <caret line="6" column="69" selection-start-line="6" selection-start-column="69" selection-end-line="6" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- </file>
- <file pinned="false" current-in-tab="false">
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="450">
- <caret line="37" column="62" selection-start-line="37" selection-start-column="62" selection-end-line="37" selection-end-column="62" />
- <folding>
- <element signature="e#892#893#0" expanded="true" />
- <element signature="e#964#965#0" expanded="true" />
- <element signature="e#1104#1105#0" expanded="true" />
- <element signature="e#1171#1172#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- </file>
- <file pinned="false" current-in-tab="false">
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="199">
- <caret line="26" lean-forward="true" selection-start-line="26" selection-end-line="26" />
- <folding>
- <element signature="e#807#808#0" expanded="true" />
- <element signature="e#863#864#0" expanded="true" />
- <element signature="e#928#929#0" expanded="true" />
- <element signature="e#987#988#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- </file>
- </leaf>
- </component>
- <component name="FileTemplateManagerImpl">
- <option name="RECENT_TEMPLATES">
- <list>
- <option value="Kotlin File" />
- <option value="Interface" />
- <option value="Class" />
- </list>
- </option>
- </component>
- <component name="FindInProjectRecents">
- <findStrings>
- <find>public</find>
- <find>static</find>
- <find>FilterSyntax.</find>
- <find>whose name starts with "A"</find>
- <find>public final</find>
- <find>.stream</find>
- <find>.stream()</find>
- <find>Person</find>
- <find>people.</find>
- </findStrings>
- <replaceStrings>
- <replace>public static</replace>
- <replace />
- <replace>filterSyntax.</replace>
- <replace>whose name starts with `this.startingCharacter`</replace>
- <replace>private final</replace>
- <replace>.parallelStream()</replace>
- <replace>R</replace>
- <replace>getPeople().</replace>
- </replaceStrings>
- </component>
- <component name="Git.Settings">
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
- </component>
- <component name="IdeDocumentHistory">
- <option name="CHANGED_PATHS">
- <list>
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionArray.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConverterArray.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionStream.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConverterStream.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionList.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConverterList.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ArrayConversion.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ListConversion.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/StreamConversion.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionSuite.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestSuiteConversionRegression.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ListConverter.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ArrayConverter.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionAgent.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ConversionAgent.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/StreamConverter.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConstants.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/TestPersonFactory.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestPersonFactory.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/DemoStreamFilter.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/exercises/ConversionAgent.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/RandomUtils.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterList.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterStream.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestSuiteConversionRegression.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamMap.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestConstants.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWorld.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/ReflectionUtils.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPerson.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonFactory.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/Person.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/StringUtils.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ConversionAgent.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/DateUtils.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerWarehouse.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerHandler.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/PersonConversionAgent.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestSuiteAnthropoidRegression.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamMap.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestSuiteFullRegression.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConversionAgent.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java" />
- <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java" />
- <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java" />
- </list>
- </option>
- </component>
- <component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
- <component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
- <component name="JsGulpfileManager">
- <detection-done>true</detection-done>
- <sorting>DEFINITION_ORDER</sorting>
- </component>
- <component name="MavenImportPreferences">
- <option name="importingSettings">
- <MavenImportingSettings>
- <option name="importAutomatically" value="true" />
- </MavenImportingSettings>
- </option>
- </component>
- <component name="ProjectFrameBounds" fullScreen="true">
- <option name="y" value="23" />
- <option name="width" value="1280" />
- <option name="height" value="725" />
- </component>
- <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
- <component name="ProjectView">
- <navigator proportions="" version="1">
- <foldersAlwaysOnTop value="true" />
- </navigator>
- <panes>
- <pane id="Scope" />
- <pane id="ProjectPane">
- <subPane>
- <expand>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="main" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="main" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="main" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- <item name="streams" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="main" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- <item name="streams" type="462c0819:PsiDirectoryNode" />
- <item name="anthropoid" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="main" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- <item name="streams" type="462c0819:PsiDirectoryNode" />
- <item name="conversions" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="test" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="test" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="test" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- <item name="streams" type="462c0819:PsiDirectoryNode" />
- </path>
- <path>
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
- <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
- <item name="src" type="462c0819:PsiDirectoryNode" />
- <item name="test" type="462c0819:PsiDirectoryNode" />
- <item name="java" type="462c0819:PsiDirectoryNode" />
- <item name="streams" type="462c0819:PsiDirectoryNode" />
- <item name="conversions" type="462c0819:PsiDirectoryNode" />
- </path>
- </expand>
- <select />
- </subPane>
- </pane>
- <pane id="PackagesPane" />
- </panes>
- </component>
- <component name="PropertiesComponent">
- <property name="WebServerToolWindowFactoryState" value="false" />
- <property name="aspect.path.notification.shown" value="true" />
- <property name="com.android.tools.idea.instantapp.provision.ProvisionBeforeRunTaskProvider.myTimeStamp" value="1542584379626" />
- <property name="last_opened_file_path" value="$PROJECT_DIR$" />
- <property name="project.structure.last.edited" value="Modules" />
- <property name="project.structure.proportion" value="0.0" />
- <property name="project.structure.side.proportion" value="0.2" />
- <property name="settings.editor.selected.configurable" value="reference.projectsettings.compiler.javacompiler" />
- </component>
- <component name="RecentsManager">
- <key name="MoveClassesOrPackagesDialog.RECENTS_KEY">
- <recent name="com.zipcodewilmington.streams.anthropoid" />
- <recent name="com.zipcodewilmington.lambdas" />
- <recent name="com.zipcodewilmington.lambdas.exercises" />
- <recent name="com.zipcode" />
- </key>
- <key name="CopyFile.RECENT_KEYS">
- <recent name="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools" />
- </key>
- <key name="CreateClassDialog.RecentsKey">
- <recent name="com.zipcodewilmington.lambdas" />
- <recent name="com.zipcodewilmington.lambdas.tools" />
- </key>
- </component>
- <component name="RunDashboard">
- <option name="ruleStates">
- <list>
- <RuleState>
- <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
- </RuleState>
- <RuleState>
- <option name="name" value="StatusDashboardGroupingRule" />
- </RuleState>
- </list>
- </option>
- </component>
- <component name="RunManager" selected="JUnit.All in streamdemo">
- <configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
- <module name="" />
- <option name="TESTING_TYPE" value="0" />
- <option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
- <option name="METHOD_NAME" value="" />
- <option name="CLASS_NAME" value="" />
- <option name="PACKAGE_NAME" value="" />
- <option name="EXTRA_OPTIONS" value="" />
- <option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
- <option name="PREFERRED_AVD" value="" />
- <option name="CLEAR_LOGCAT" value="false" />
- <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
- <option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
- <option name="FORCE_STOP_RUNNING_APP" value="true" />
- <option name="DEBUGGER_TYPE" value="Java" />
- <option name="USE_LAST_SELECTED_DEVICE" value="false" />
- <option name="PREFERRED_AVD" value="" />
- <Java />
- <Profilers>
- <option name="ENABLE_ADVANCED_PROFILING" value="true" />
- <option name="GAPID_ENABLED" value="false" />
- <option name="GAPID_DISABLE_PCS" value="false" />
- <option name="SUPPORT_LIB_ENABLED" value="true" />
- <option name="INSTRUMENTATION_ENABLED" value="true" />
- </Profilers>
- <method />
- </configuration>
- <configuration default="true" type="Applet" factoryName="Applet">
- <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration default="true" type="Application" factoryName="Application">
- <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration name="All in streamdemo" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
- <module name="streamdemo" />
- <option name="PACKAGE_NAME" value="" />
- <option name="TEST_OBJECT" value="package" />
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration name="TestConversionAgent" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
- <module name="streamdemo" />
- <extension name="coverage">
- <pattern>
- <option name="PATTERN" value="com.zipcodewilmington.streams.conversions.*" />
- <option name="ENABLED" value="true" />
- </pattern>
- </extension>
- <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams.conversions" />
- <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.streams.conversions.TestConversionAgent" />
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration name="TestConversionAgent.testCount" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
- <module name="streamdemo" />
- <extension name="coverage">
- <pattern>
- <option name="PATTERN" value="com.zipcodewilmington.streams.conversions.*" />
- <option name="ENABLED" value="true" />
- </pattern>
- </extension>
- <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams.conversions" />
- <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.streams.conversions.TestConversionAgent" />
- <option name="METHOD_NAME" value="testCount" />
- <option name="TEST_OBJECT" value="method" />
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration name="TestConversionAgent.testToList" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
- <module name="streamdemo" />
- <extension name="coverage">
- <pattern>
- <option name="PATTERN" value="com.zipcodewilmington.streams.conversions.*" />
- <option name="ENABLED" value="true" />
- </pattern>
- </extension>
- <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams.conversions" />
- <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.streams.conversions.TestConversionAgent" />
- <option name="METHOD_NAME" value="testToList" />
- <option name="TEST_OBJECT" value="method" />
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration default="true" type="JUnit" factoryName="JUnit">
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration name="com.zipcodewilmington.streams in streamdemo" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
- <module name="streamdemo" />
- <extension name="coverage">
- <pattern>
- <option name="PATTERN" value="com.zipcodewilmington.streams.*" />
- <option name="ENABLED" value="true" />
- </pattern>
- </extension>
- <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams" />
- <option name="TEST_OBJECT" value="package" />
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration default="true" type="JetRunConfigurationType" factoryName="Kotlin">
- <module name="looptest" />
- <option name="VM_PARAMETERS" />
- <option name="PROGRAM_PARAMETERS" />
- <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
- <option name="ALTERNATIVE_JRE_PATH" />
- <option name="PASS_PARENT_ENVS" value="true" />
- <option name="MAIN_CLASS_NAME" />
- <option name="WORKING_DIRECTORY" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration default="true" type="KotlinStandaloneScriptRunConfigurationType" factoryName="Kotlin script">
- <option name="filePath" />
- <option name="vmParameters" />
- <option name="alternativeJrePath" />
- <option name="programParameters" />
- <option name="passParentEnvs" value="true" />
- <option name="workingDirectory" />
- <option name="isAlternativeJrePathEnabled" value="false" />
- <option name="VM_PARAMETERS" />
- <option name="PROGRAM_PARAMETERS" />
- <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
- <option name="ALTERNATIVE_JRE_PATH" />
- <option name="PASS_PARENT_ENVS" value="true" />
- <option name="MAIN_CLASS_NAME" />
- <option name="WORKING_DIRECTORY" />
- <module name="" />
- <option name="filePath" />
- <option name="vmParameters" />
- <option name="alternativeJrePath" />
- <option name="programParameters" />
- <option name="passParentEnvs" value="true" />
- <option name="workingDirectory" />
- <option name="isAlternativeJrePathEnabled" value="false" />
- <option name="VM_PARAMETERS" />
- <option name="PROGRAM_PARAMETERS" />
- <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
- <option name="ALTERNATIVE_JRE_PATH" />
- <option name="PASS_PARENT_ENVS" value="true" />
- <option name="MAIN_CLASS_NAME" />
- <option name="WORKING_DIRECTORY" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration default="true" type="TestNG" factoryName="TestNG">
- <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
- <properties />
- <listeners />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
- <module name="" />
- <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
- <option name="PROGRAM_PARAMETERS" />
- <predefined_log_file id="idea.log" enabled="true" />
- <method v="2">
- <option name="Make" enabled="true" />
- </method>
- </configuration>
- <list>
- <item itemvalue="JUnit.TestConversionAgent" />
- <item itemvalue="JUnit.TestConversionAgent.testCount" />
- <item itemvalue="JUnit.TestConversionAgent.testToList" />
- <item itemvalue="JUnit.com.zipcodewilmington.streams in streamdemo" />
- <item itemvalue="JUnit.All in streamdemo" />
- </list>
- <recent_temporary>
- <list>
- <item itemvalue="JUnit.All in streamdemo" />
- <item itemvalue="JUnit.com.zipcodewilmington.streams in streamdemo" />
- <item itemvalue="JUnit.TestConversionAgent.testCount" />
- <item itemvalue="JUnit.TestConversionAgent" />
- <item itemvalue="JUnit.TestConversionAgent.testToList" />
- </list>
- </recent_temporary>
- </component>
- <component name="SvnConfiguration">
- <configuration />
- </component>
- <component name="TaskManager">
- <task active="true" id="Default" summary="Default task">
- <changelist id="30b7e4a0-b899-49c3-865c-0311dfadae62" name="Default" comment="" />
- <created>1493756132542</created>
- <option name="number" value="Default" />
- <option name="presentableId" value="Default" />
- <updated>1493756132542</updated>
- <workItem from="1542493051522" duration="17485000" />
- </task>
- <servers />
- </component>
- <component name="TestHistory">
- <history-entry file="TestConversionAgent - 2018.11.18 at 16h 57m 17s.xml">
- <configuration name="TestConversionAgent" configurationId="JUnit" />
- </history-entry>
- <history-entry file="TestConversionAgent - 2018.11.18 at 16h 57m 27s.xml">
- <configuration name="TestConversionAgent" configurationId="JUnit" />
- </history-entry>
- <history-entry file="TestConversionAgent_testCount - 2018.11.18 at 16h 57m 45s.xml">
- <configuration name="TestConversionAgent.testCount" configurationId="JUnit" />
- </history-entry>
- <history-entry file="TestConversionAgent_testCount - 2018.11.18 at 16h 58m 16s.xml">
- <configuration name="TestConversionAgent.testCount" configurationId="JUnit" />
- </history-entry>
- <history-entry file="com_zipcodewilmington_streams_in_streamdemo - 2018.11.18 at 16h 58m 55s.xml">
- <configuration name="com.zipcodewilmington.streams in streamdemo" configurationId="JUnit" />
- </history-entry>
- <history-entry file="com_zipcodewilmington_streams_in_streamdemo - 2018.11.18 at 17h 02m 25s.xml">
- <configuration name="com.zipcodewilmington.streams in streamdemo" configurationId="JUnit" />
- </history-entry>
- <history-entry file="All_in_streamdemo - 2018.11.18 at 17h 32m 12s.xml">
- <configuration name="All in streamdemo" configurationId="JUnit" />
- </history-entry>
- <history-entry file="All_in_streamdemo - 2018.11.18 at 17h 33m 33s.xml">
- <configuration name="All in streamdemo" configurationId="JUnit" />
- </history-entry>
- <history-entry file="All_in_streamdemo - 2018.11.18 at 17h 34m 43s.xml">
- <configuration name="All in streamdemo" configurationId="JUnit" />
- </history-entry>
- <history-entry file="All_in_streamdemo - 2018.11.18 at 18h 26m 08s.xml">
- <configuration name="All in streamdemo" configurationId="JUnit" />
- </history-entry>
- </component>
- <component name="TimeTrackingManager">
- <option name="totallyTimeSpent" value="17485000" />
- </component>
- <component name="TodoView">
- <todo-panel id="selected-file">
- <is-autoscroll-to-source value="true" />
- </todo-panel>
- <todo-panel id="all">
- <are-packages-shown value="true" />
- <is-autoscroll-to-source value="true" />
- </todo-panel>
- </component>
- <component name="ToolWindowManager">
- <frame x="0" y="0" width="1280" height="800" extended-state="0" />
- <editor active="true" />
- <layout>
- <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.21163167" />
- <window_info id="Structure" order="1" weight="0.25" />
- <window_info id="Designer" order="2" />
- <window_info id="Nl-Palette" order="3" />
- <window_info id="Favorites" order="4" side_tool="true" />
- <window_info id="Image Layers" order="5" />
- <window_info id="Capture Tool" order="6" />
- <window_info id="UI Designer" order="7" />
- <window_info anchor="bottom" id="Database Changes" show_stripe_button="false" />
- <window_info anchor="bottom" id="Message" order="0" />
- <window_info anchor="bottom" id="Find" order="1" weight="0.3298647" />
- <window_info active="true" anchor="bottom" id="Run" order="2" visible="true" weight="0.43150684" />
- <window_info anchor="bottom" id="Debug" order="3" weight="0.39958376" />
- <window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
- <window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
- <window_info anchor="bottom" id="TODO" order="6" weight="0.3277849" />
- <window_info anchor="bottom" id="Version Control" order="7" />
- <window_info anchor="bottom" id="Terminal" order="8" weight="0.264308" />
- <window_info anchor="bottom" id="Event Log" order="9" side_tool="true" />
- <window_info anchor="bottom" id="Messages" order="10" weight="0.32778355" />
- <window_info anchor="right" id="Database" />
- <window_info anchor="right" id="Commander" order="0" weight="0.4" />
- <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
- <window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
- <window_info anchor="right" id="Palette" order="3" />
- <window_info anchor="right" id="Capture Analysis" order="4" />
- <window_info anchor="right" id="Theme Preview" order="5" />
- <window_info anchor="right" id="Properties" order="6" />
- <window_info anchor="right" id="Palette	" order="7" />
- <window_info anchor="right" id="Maven Projects" order="8" />
- </layout>
- <layout-to-restore>
- <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.13951011" />
- <window_info id="Structure" order="1" weight="0.25" />
- <window_info id="Designer" order="2" />
- <window_info id="Nl-Palette" order="3" />
- <window_info id="Favorites" order="4" side_tool="true" />
- <window_info id="Image Layers" order="5" />
- <window_info id="Capture Tool" order="6" />
- <window_info id="UI Designer" order="7" />
- <window_info anchor="bottom" id="Database Changes" order="0" show_stripe_button="false" />
- <window_info anchor="bottom" id="Message" order="1" />
- <window_info anchor="bottom" id="Find" order="2" weight="0.3298647" />
- <window_info active="true" anchor="bottom" id="Run" order="3" visible="true" weight="0.31188118" />
- <window_info anchor="bottom" id="Debug" order="4" weight="0.39958376" />
- <window_info anchor="bottom" id="Cvs" order="5" weight="0.25" />
- <window_info anchor="bottom" id="Inspection" order="6" weight="0.4" />
- <window_info anchor="bottom" id="TODO" order="7" weight="0.3277849" />
- <window_info anchor="bottom" id="Version Control" order="8" />
- <window_info anchor="bottom" id="Terminal" order="9" weight="0.264308" />
- <window_info anchor="bottom" id="Event Log" order="10" side_tool="true" />
- <window_info anchor="bottom" id="Messages" order="11" weight="0.32778355" />
- <window_info anchor="right" id="Database" order="0" />
- <window_info anchor="right" id="Commander" order="1" weight="0.4" />
- <window_info anchor="right" id="Ant Build" order="2" weight="0.25" />
- <window_info anchor="right" content_ui="combo" id="Hierarchy" order="3" weight="0.25" />
- <window_info anchor="right" id="Palette" order="4" />
- <window_info anchor="right" id="Capture Analysis" order="5" />
- <window_info anchor="right" id="Theme Preview" order="6" />
- <window_info anchor="right" id="Properties" order="7" />
- <window_info anchor="right" id="Palette	" order="8" />
- <window_info anchor="right" id="Maven Projects" order="9" />
- </layout-to-restore>
- </component>
- <component name="TypeScriptGeneratedFilesManager">
- <option name="version" value="1" />
- </component>
- <component name="VcsContentAnnotationSettings">
- <option name="myLimit" value="2678400000" />
- </component>
- <component name="antWorkspaceConfiguration">
- <option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
- <option name="FILTER_TARGETS" value="false" />
- </component>
- <component name="editorHistoryManager">
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/AbstractCollection.java" />
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcode/LoopMethods.java" />
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcode/ArrayLoopMethods.java" />
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcode/ArrayLoopMethodsTest.java" />
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/tools/StringFactory.java" />
- <entry file="jar://$MAVEN_REPOSITORY$/junit/junit/4.12/junit-4.12.jar!/org/junit/Assert.class">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="361">
- <caret line="38" column="39" lean-forward="true" selection-start-line="38" selection-start-column="39" selection-end-line="38" selection-end-column="39" />
- </state>
- </provider>
- </entry>
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/Arrays.java" />
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/Exercises.java" />
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/stream/Stream.java" />
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/HashMap.java" />
- <entry file="file://$PROJECT_DIR$/target/index.html">
- <provider selected="true" editor-type-id="text-editor" />
- </entry>
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/time/LocalDate.java" />
- <entry file="file://$PROJECT_DIR$/target/global.leonlog.1">
- <provider selected="true" editor-type-id="LargeFileEditor">
- <state relative-caret-position="146">
- <caret line="10" column="90" lean-forward="true" selection-start-line="10" selection-start-column="90" selection-end-line="10" selection-end-column="90" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/Test Results - TestSuiteFullRegression.html" />
- <entry file="file://$PROJECT_DIR$/target/global.leonlog">
- <provider selected="true" editor-type-id="LargeFileEditor">
- <state relative-caret-position="-90">
- <caret line="2" lean-forward="true" selection-start-line="2" selection-end-line="2" />
- </state>
- </provider>
- <provider editor-type-id="text-editor" />
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWorld.java" />
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouseWarehouse.java" />
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/function/Predicate.java" />
- <entry file="file://$PROJECT_DIR$/streamdemo.iml">
- <provider selected="true" editor-type-id="text-editor" />
- </entry>
- <entry file="file://$PROJECT_DIR$/.gitignore">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="15">
- <caret line="1" lean-forward="true" selection-start-line="1" selection-end-line="1" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/StringUtils.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="60">
- <caret line="4" column="45" selection-start-line="4" selection-end-line="5" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/ReflectionUtils.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="270">
- <caret line="23" column="61" lean-forward="true" selection-start-line="23" selection-start-column="61" selection-end-line="23" selection-end-column="61" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/DateUtils.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="840">
- <caret line="57" column="41" selection-start-line="57" selection-start-column="41" selection-end-line="57" selection-end-column="41" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterList.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="90">
- <caret line="6" column="69" selection-start-line="6" selection-start-column="69" selection-end-line="6" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestSuiteAnthropoidRegression.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="315">
- <caret line="21" lean-forward="true" selection-start-line="21" selection-end-line="21" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerWarehouse.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="90">
- <caret line="7" column="69" selection-start-line="7" selection-start-column="69" selection-end-line="7" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamMap.java" />
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerHandler.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="105">
- <caret line="13" column="69" selection-start-line="13" selection-start-column="69" selection-end-line="13" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestSuiteFullRegression.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="120">
- <caret line="12" selection-start-line="12" selection-end-line="12" />
- </state>
- </provider>
- </entry>
- <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_191.jdk/Contents/Home/src.zip!/java/util/ArrayList.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="129">
- <caret line="150" column="11" selection-start-line="150" selection-start-column="11" selection-end-line="150" selection-end-column="11" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestConstants.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="105">
- <caret line="7" column="26" selection-start-line="7" selection-start-column="26" selection-end-line="7" selection-end-column="26" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPerson.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="300">
- <caret line="25" column="12" selection-start-line="25" selection-start-column="12" selection-end-line="25" selection-end-column="12" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/Person.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="247">
- <caret line="51" column="5" selection-start-line="51" selection-start-column="5" selection-end-line="51" selection-end-column="5" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamMap.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="326">
- <caret line="38" column="1" selection-start-line="38" selection-start-column="1" selection-end-line="38" selection-end-column="1" />
- <folding>
- <element signature="e#550#551#0" expanded="true" />
- <element signature="e#577#578#0" expanded="true" />
- <element signature="e#802#803#0" expanded="true" />
- <element signature="e#829#830#0" expanded="true" />
- <element signature="e#1054#1055#0" expanded="true" />
- <element signature="e#1081#1082#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/RandomUtils.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="480">
- <caret line="37" column="26" selection-start-line="37" selection-start-column="26" selection-end-line="37" selection-end-column="26" />
- <folding>
- <element signature="e#1365#1366#0" expanded="true" />
- <element signature="e#1420#1421#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonFactory.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="330">
- <caret line="32" selection-start-line="32" selection-end-line="33" />
- <folding>
- <element signature="e#1052#1053#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="123">
- <caret line="72" column="70" selection-start-line="72" selection-end-line="73" />
- <folding>
- <element signature="imports" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ConversionAgent.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="18">
- <caret line="14" column="1" selection-start-line="14" selection-start-column="1" selection-end-line="14" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="360">
- <caret line="31" column="33" selection-start-line="31" selection-start-column="33" selection-end-line="31" selection-end-column="33" />
- <folding>
- <element signature="e#750#751#0" expanded="true" />
- <element signature="e#801#802#0" expanded="true" />
- <element signature="e#859#860#0" expanded="true" />
- <element signature="e#889#890#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="855">
- <caret line="69" column="97" selection-start-line="69" selection-start-column="97" selection-end-line="69" selection-end-column="97" />
- <folding>
- <element signature="e#2429#2430#0" expanded="true" />
- <element signature="e#2456#2457#0" expanded="true" />
- <element signature="e#2570#2571#0" expanded="true" />
- <element signature="e#2597#2598#0" expanded="true" />
- <element signature="e#3064#3065#0" expanded="true" />
- <element signature="e#3152#3153#0" expanded="true" />
- <element signature="e#2872#2873#0" expanded="true" />
- <element signature="e#2901#2902#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="596">
- <caret line="63" column="70" selection-start-line="63" selection-start-column="70" selection-end-line="63" selection-end-column="70" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="390">
- <caret line="34" column="31" lean-forward="true" selection-start-line="34" selection-start-column="31" selection-end-line="34" selection-end-column="31" />
- <folding>
- <element signature="e#995#996#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/PersonConversionAgent.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="120">
- <caret line="8" column="69" selection-start-line="8" selection-start-column="69" selection-end-line="8" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="90">
- <caret line="6" column="70" selection-start-line="6" selection-start-column="70" selection-end-line="6" selection-end-column="70" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestSuiteConversionRegression.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="225">
- <caret line="16" column="13" selection-start-line="16" selection-start-column="13" selection-end-line="16" selection-end-column="13" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/README.md">
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
- <state split_layout="SPLIT">
- <first_editor />
- <second_editor />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="199">
- <caret line="26" lean-forward="true" selection-start-line="26" selection-end-line="26" />
- <folding>
- <element signature="e#807#808#0" expanded="true" />
- <element signature="e#863#864#0" expanded="true" />
- <element signature="e#928#929#0" expanded="true" />
- <element signature="e#987#988#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConversionAgent.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="795">
- <caret line="67" column="16" selection-start-line="67" selection-start-column="16" selection-end-line="67" selection-end-column="16" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterStream.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="90">
- <caret line="6" column="69" selection-start-line="6" selection-start-column="69" selection-end-line="6" selection-end-column="69" />
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="450">
- <caret line="37" column="62" selection-start-line="37" selection-start-column="62" selection-end-line="37" selection-end-column="62" />
- <folding>
- <element signature="e#892#893#0" expanded="true" />
- <element signature="e#964#965#0" expanded="true" />
- <element signature="e#1104#1105#0" expanded="true" />
- <element signature="e#1171#1172#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java">
- <provider selected="true" editor-type-id="text-editor">
- <state relative-caret-position="168">
- <caret line="63" column="57" selection-start-line="63" selection-start-column="57" selection-end-line="63" selection-end-column="57" />
- <folding>
- <element signature="e#1177#1178#0" expanded="true" />
- <element signature="e#1219#1220#0" expanded="true" />
- <element signature="e#2593#2594#0" expanded="true" />
- <element signature="e#2620#2621#0" expanded="true" />
- <element signature="e#2813#2814#0" expanded="true" />
- <element signature="e#2840#2841#0" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- </component>
- <component name="masterDetails">
- <states>
- <state key="ArtifactsStructureConfigurable.UI">
- <settings>
- <artifact-editor />
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- <state key="FacetStructureConfigurable.UI">
- <settings>
- <last-edited>No facets are configured</last-edited>
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- <state key="GlobalLibrariesConfigurable.UI">
- <settings>
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- <state key="JdkListConfigurable.UI">
- <settings>
- <last-edited>1.8</last-edited>
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- <state key="ModuleStructureConfigurable.UI">
- <settings>
- <last-edited>looptest</last-edited>
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- <option value="0.6" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- <state key="ProjectLibrariesConfigurable.UI">
- <settings>
- <last-edited>Maven: junit:junit:4.12</last-edited>
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- <state key="ScopeChooserConfigurable.UI">
- <settings>
- <splitter-proportions>
- <option name="proportions">
- <list>
- <option value="0.2" />
- </list>
- </option>
- </splitter-proportions>
- </settings>
- </state>
- </states>
- </component>
- </project>
|