-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cosmetic changes to LocalizationTable class #375
Conversation
You seem to have done the same cleanup I did in #362. :) Maybe base your work on that? Or should we just see whoever gets merged first? XD Edit: But, yes, |
@Mizipzor Yes, you've done more in missing localization part, and I changed other parts |
I can probably merge your branch if you want. Or just replicate your changes, but then it would like look I committed them and its important to me that you get proper credit. |
I've just merged the cleanup from #362 - If you can pull and merge those changes in your code and solve the conflict, I can merge this. Then you both get your credit :) |
I just pulled his branch, there are merge conflicts but they are big and easy to see. @Grenkin1988 Are you comfortable resolving merge conflicts? If not, this is an awesome learning experience. :) If you dont want to resolve but still want these changes in just toss your branch and start over based on latest master. Either way, I'm willing to help you with the Git wrangling, if you want. |
@Mizipzor @RodRitter Brobably this is it. |
Hm not really, you reverted most of my changes. :/ Consider installing and running StyleCop, thats what I did to guide my cleanup (StyleCop is the Microsoft style). |
@Mizipzor Than I will start again later in the evening. Need to go. |
Very well, take care. :) |
@Grenkin1988 By looking at your code for replacing my code with string.Split(), it seems that you implemented an exception if there are two or more '=' in a line. What I did was intentional, in case in any language for whatever reason an '=' is required for a localization that it still works. |
Its true that if the value itself contains a |
Alright, that I didn't know actually. |
@Mizipzor Could I close this PR and open new one? I am going to do total undo. Or it is neened for history tracking? (Never worked with git, I am using TFS at work) |
@Grenkin1988 If you want to start over that is absolutely what you should do. :) |
Closing this as going to undo everything and start from beginning |
What do you think about this changes?
line.Split('=');
i think .NET know how to work with strings efficiently?